iOS9 storyboard what is unhandled action (handleNonLaunchSpecificActions)?

前端 未结 4 1276
伪装坚强ぢ
伪装坚强ぢ 2021-02-01 00:33

I\'ve noticed the following error popping up in the console when running my app on iOS 9 when using a storyboard. I\'m using xCode7. Is this something I need to be concerned ab

4条回答
  •  甜味超标
    2021-02-01 00:40

    I have figured it out, it will happen when you have IBAction method declared in .h or .m file but you have not bind it to any control.

    .m example:

    - (IBAction)click:(id)sender{
    }
    

    but not assigned this method to any control in storyboard.

提交回复
热议问题