现象描述:在storyboard
中IBAction
无法与UIButton或其子类
关联。从UIStoryboard
中拖到类中也只能看到IBOutlet
或者Outlet Collection
。
就像下面这样:
disable.gif那么原因是什么呢?
Screen Shot 2016-12-08 at 20.30.57.png对,就是因为你extension 了 UIButton 并遵循了自定义的协议。那么如果实在要对UIButton实现协议拓展怎么办?你可以先注释UIButton遵循protocol的部分,在拖线完成后再取消注释。
Update:
如果你是需要对responder行为进行拓展,可以直接extend UIResponder.
具体是不是个bug不得而知,相关链接
如下:https://forums.developer.apple.com/thread/25180
网友评论