私は Eureka フレームワークを使用しており、最近追加されたコードを使用して、端から端までのセル区切りを可能にしています。これにより、すべてのフォーム要素にマージンを定義する必要があります。そうしないと、画面の左端から始まります。
セルと同様に、セクション ヘッダー/フッターの左右の余白を調整する方法はありますか? すべてのセクション/ヘッダー タイトルにカスタム クラスを使用しないようにしています。
ビューの作成方法を確認するためにソース コードを調べてみましたが、x 座標や左右のマージンなどを定義する場所がどこにもありません。また、設定できるプロパティもありません。これを達成します。
どんな助けでも大歓迎です!
+++ Section(){section in
var footer = HeaderFooterView<UITableViewHeaderFooterView>(.Class)
footer.onSetupView = {view, _, _ in
view.preservesSuperviewLayoutMargins = false
view.layoutMargins.left = 50
view.layoutMargins.right = 50
view.contentView.preservesSuperviewLayoutMargins = false
view.contentView.layoutMargins.top = 10
view.contentView.layoutMargins.left = 50
view.textLabel?.text = "This is a test footer message."
view.textLabel?.layoutMargins.top = 10
view.textLabel?.font = UIFont.preferredFontForTextStyle("Footnote")
}
section.header = HeaderFooterView<ALogoView>(HeaderFooterProvider.Class)
section.footer = footer
}
編集:上記を試しましたが、うまくいきません。長い文字列を入れると、親セクションの行に移動します。
Edit2:私は次のことを思いついた
class GenericHeader: UIView {
override init(frame: CGRect) {
super.init(frame: frame)
self.preservesSuperviewLayoutMargins = false
let textView = UILabel()
textView.frame = CGRect(x: 0, y: 0, width: UIScreen.mainScreen().bounds.width - 30, height: 20 )
textView.text = "This is a very very very long title, This is a very very very long title, This is a very very very long title, This is a very very very long title, This is a very very very long title, This is a very very very long title Let's add some more stuff here to see how it handles."
textView.numberOfLines = 0
textView.textAlignment = .Justified
textView.font = UIFont.preferredFontForTextStyle(UIFontTextStyleBody)
textView.textColor = UIColor(red:0.47, green:0.47, blue:0.49, alpha:1.0)
textView.frame = textView.bounds
textView.sizeToFit()
self.addSubview(textView)
//self.frame = CGRect(x: -15, y: -3, width: textView.bounds.width - 16, height: textView.bounds.height)
self.bounds = CGRect(x: -15, y: -3, width: textView.bounds.width - 16, height: textView.bounds.height)
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
私はこれを私の形で使用しています:
+++ Section() {
$0.header = HeaderFooterView<GenericHeader>(HeaderFooterProvider.Class)
$0.footer = HeaderFooterView<GenericFooter>(HeaderFooterProvider.Class)
}
ヘッダー/フッター クラスがインスタンス化されているときに、文字列を渡すにはどうすればよいですか?