如何将 uibutton 添加到自定义注释视图
我创建了一个自定义注释视图。在 setSelected 方法中,我已经根据需要实现了一个视图,现在我想向该视图添加一个按钮。但是按钮没有检测到点击事件, 它被地图视图吸收了。我应该做什么来添加像 rightcalloutaccessory 这样的按钮。 提前致谢。
I have created a custom annotation view. In the setSelected method i have implemented a view as i need, now i want add a button to that view. But the button not detecting the click event,
it absorbed by the mapview. what should i do for adding button like rightcalloutaccessory.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过更改 UIButton 的控制事件解决了这个问题,如下
是我的代码中用于创建自定义注释的部分。
I solved this problem by changing control event for the
UIButton
asBelow is the part of my code to create custom annotations.