向 UIButton 添加其他视图
我想向 UIButton
添加一些视图。例如多个 UILabels
、UIImages
等。 我添加这些视图时,它们没有得到触摸事件。如何将触摸事件传递给 UIButton
?
谢谢
I want to add some views to a UIButton
. For example multiple UILabels
, UIImages
, etc.
One I add those views, they do not get the touch events. How can I pass the touch events to UIButton
?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将添加到
UIButton
的每个子视图
的userInteractionEnabled
属性设置为NO
。Set the
userInteractionEnabled
property of each of thesubviews
you added to yourUIButton
toNO
.