美文网首页swift的坑iOS学习开发程序员
UIButton 不能拖IBAction 了?!

UIButton 不能拖IBAction 了?!

作者: gogo_coder | 来源:发表于2016-12-08 20:42 被阅读100次

    现象描述:在storyboardIBAction无法与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

    相关文章

      网友评论

        本文标题:UIButton 不能拖IBAction 了?!

        本文链接:https://www.haomeiwen.com/subject/kxvsmttx.html