美文网首页iOS DeveloperiOS 开发
IOS 为多层图片添加点击事件

IOS 为多层图片添加点击事件

作者: 478343628d84 | 来源:发表于2016-06-04 22:41 被阅读510次

在图片上添加了图片,点击事件没有生效

    let tap = UITapGestureRecognizer(target: self, action: #selector(HomeUserController.go_to_user_info_settins_controoler(_:)))
    
    logoView.addGestureRecognizer(tap)
    logoView.userInteractionEnabled = true

最后发现是 图片底部的图片,也需要设置

    userInteractionEnabled = true

有了这句之后,搞定

相关文章

网友评论

    本文标题:IOS 为多层图片添加点击事件

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