IBOutletsで奇妙なことが起こっています。
コードでは、このプロパティにアクセスしようとしましたが、nil
です。コード:
class CustomKeyboard: UIView {
@IBOutlet var aButt: UIButton!
@IBOutlet var oButt: UIButton!
class func keyboard() -> UIView {
let nib = UINib(nibName: "CustomKeyboard", bundle: nil)
return nib.instantiateWithOwner(self, options: nil).first as UIView
}
override init() {
super.init()
commonInit()
}
override init(frame: CGRect) {
super.init(frame: frame)
commonInit()
}
required init(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
commonInit()
}
// MARK: - Private
private func commonInit() {
println(aButt)
// aButt is nil
aButt = self.viewWithTag(1) as UIButton
println(aButt)
// aButt is not nil
}
}
初期化子が呼び出されるまでにIBOutletが割り当てられないため、これは予期されています。 commonInitは不要で、次のようにawakeFromNibをオーバーライドするだけです。
override func awakeFromNib() {
super.awakeFromNib()
print(aButt)
}
IBOutletsを接続するための標準的なトラブルシューティング手順を試したと仮定して、これを試してください:
どうやら、特定のランタイムの場合にはnibからのアウェイクを無効にする必要があります。
override func awakeAfter(using aDecoder: NSCoder) -> Any? {
guard subviews.isEmpty else { return self }
return Bundle.main.loadNibNamed("MainNavbar", owner: nil, options: nil)?.first
}
ペン先が接続されていない可能性があります。私の解決策は非常に簡単です。プロジェクトのどこかに(UIViewExtension.Swiftというクラスを作成します)、この便利なconnectNibUIメソッドを使用してUIViewの拡張機能を追加します。
extension UIView {
func connectNibUI() {
let nib = UINib(nibName: String(describing: type(of: self)), bundle: nil).instantiate(withOwner: self, options: nil)
let nibView = nib.first as! UIView
nibView.translatesAutoresizingMaskIntoConstraints = false
self.addSubview(nibView)
//I am using SnapKit cocoapod for this method, to update constraints. You can use NSLayoutConstraints if you prefer.
nibView.snp.makeConstraints { (make) -> Void in
make.edges.equalTo(self)
}
}
}
これで、任意のビューでこのメソッドを呼び出すことができ、initメソッドでこれを実行します。
override init(frame: CGRect) {
super.init(frame: frame)
connectNibUI()
}
そして、どのようにしてコントローラーからビューを開始しましたか?このような:
var view = CustomKeyboard.keyboard()
self.view.addSubview(view)
@ScottyBladesに基づいて、このサブクラスを作成しました。
class UIViewXib: UIView {
// I'm finding this necessary when I name a Xib-based UIView in IB. Otherwise, the IBOutlets are not loaded in awakeFromNib.
override func awakeAfter(using aDecoder: NSCoder) -> Any? {
guard subviews.isEmpty else { return self }
return Bundle.main.loadNibNamed(typeName(self), owner: nil, options: nil)?.first
}
}
func typeName(_ some: Any) -> String {
return (some is Any.Type) ? "\(some)" : "\(type(of: some))"
}