LoginSignup
8
0

More than 1 year has passed since last update.

@IBDesignableでstoryboardが壊れる

Last updated at Posted at 2018-11-13

メモ。

こうなる......

@IBDesignableでAttributeインスペクターから
textFieldのボーダー指定などの編集項目を追加してた。
そしたらいつの間にか__お亡くなり__になった。
スクリーンショット 2018-11-13 16.13.45.png

原因探し

クラッシュしたわけではないけどログを確認。。とりあえずログを確認。
/Users/ユーザー名/library/Logs/DiagnosticReports/
IBDesignablesAgent-iOS_2018-11-12-173509_mopiemon.crash

error: Use of unimplemented initializer 'init(frame:)' for class 'プロジェクト.MaterialTextField' 

とのこと。

解決策

@IBDesignableのクラスに

    override init(frame: CGRect) {
        super.init(frame: frame)
        awakeFromNib()
    }

これ追加で復活。
requireとかなかったけどinit(frame: CGRect)が必要なことはどこで確認すればいいんだ。

慣れてないのでツッコミくださると嬉しいです😇

8
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
0