如何创建“热点”可以在 Xcode 中的 UIImageView 上单击并触发事件
我有一个自定义图形,用作 UIView 的背景。在此图像上有一些文本,我想在其周围创建可点击的热点。例如,一个说“下一个”,一个说“上一个”,我希望这些成为可点击的热点,我可以捕获事件并使用一些数据更改 UITextView。到目前为止,我无法找到有关在 UIImageView 上定义可点击区域的任何帮助。感谢您的帮助!
I have a custom graphic that I am using as the background to a UIView. On this image there are some text that I would like to create clickable hotspots around. For instance, one says "Next" and one says "Previous", I'd like these to be clickable hotspots that I can capture the event and change a UITextView with some data. So far I have been unable to find any help on defining clickable regions on a UIImageView. Thanks for the help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我只是创建不可见的 UIButtons 来覆盖您想要可点击的区域。在 Interface Builder 中,只需创建按钮并将其类型设置为自定义,并且不提供任何文本或图像。在代码中:
然后使用按钮的标签来确定在
clickedHotspot:
内单击了哪个按钮I would just create invisible UIButtons that overlay the area you want to be clickable. In Interface Builder, just create the button and set its type to custom and don't provide any text or images. In code:
Then use the button's tag to determine which button was clicked inside of
clickedHotspot: