Storyboardで設置したUIを custom classで編集した時の注意点[Swift](exc_bad_instruction (code=exc_i386_invop subcode=0x0))
概要
・Storyboard
でUI(hogehogeView
とする)を設置し
@IBOutlet weak var hogehogeView: hugahugaCustomView!
・こんな風にコード側とも連携を取り(&しっかりとcustom class
を参照)
import UIKit
class hugahugaCustomView: UIView {
//やりたい処理
}
そして実行!
問題と解決策
問題
実行するとこんなエラーが、、、、
exc_bad_instruction (code=exc_i386_invop subcode=0x0)
こいつはいろんなパターンで出るようですが
UIが繋がってません系のミスで多いようですね
(※これ以外にある場合はのちに追記)
参考
・Xcode - EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0)と表示されアプリがクラッシュされてしまいます。|teratail
・iOS - 【エラーの対処法がわかりません】exc_bad_instruction (code=exc_i386_invop subcode=0x0)|teratail
解決策
storyboard
側でもしっかりとcustom class
を参照しましょう
結論
Storyboardで設置したUIをcustom class
で編集している場合の注意点をまとめると
・@IB...で定義した後Storyboard側と連携を取る(右クリック&ドラッグ
でつなぐ)
・@IB...の定義でcustom class
を参照する
・Storyboard
側でもcustom class
を参照する
Author And Source
この問題について(Storyboardで設置したUIを custom classで編集した時の注意点[Swift](exc_bad_instruction (code=exc_i386_invop subcode=0x0))), 我々は、より多くの情報をここで見つけました https://qiita.com/koutEngineerK/items/8f08bd8dcc4ff88580dc著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .