LoginSignup
2
2

More than 5 years have passed since last update.

swift:Storyboardから@IBOutletを作った時にproperty not initialized at super.init callのエラーが出た場合の対処

Posted at

StoryBoardから@IBOutletのソースを生成します

こんなソースが生成されます

SampleViewController
    @IBOutlet strong var btn: UIButton

コンパイル時エラーが発生


<unknown>:0: error: property 'self.btn' not initialized at super.init call

strongを外しましょう

SampleViewController
    @IBOutlet var btn_info: UIButton
2
2
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
2
2