25 lines
681 B
Swift
25 lines
681 B
Swift
import UIKit
|
|
|
|
final class AutolayoutSectionHeaderView: UIView {
|
|
|
|
@IBOutlet weak var testLabel: UILabel!
|
|
|
|
override func awakeFromNib() {
|
|
super.awakeFromNib()
|
|
|
|
testLabel.text = "My super super super super super super super super super super super super super super super super super super super long text!"
|
|
}
|
|
|
|
static func loadFromNib() -> AutolayoutSectionHeaderView {
|
|
|
|
let view = Bundle(for: self)
|
|
.loadNibNamed(
|
|
String(describing: self),
|
|
owner: nil,
|
|
options: nil
|
|
)?.first
|
|
|
|
return view as! AutolayoutSectionHeaderView
|
|
}
|
|
}
|