Add. Configuration for XibView

This commit is contained in:
Igor Kislyuk 2017-07-31 13:53:20 +03:00
parent b48aa95e3b
commit bc3d4f7901
1 changed files with 7 additions and 0 deletions

View File

@ -53,6 +53,13 @@ open class XibView: UIView {
view.autoresizingMask = [.flexibleWidth, .flexibleHeight]
addSubview(view)
configure()
}
/// Provide initial configuration. Called once
open func configure() {
}
}