我应该在哪个事件中删除视图?
我正在通过单击图像加载视图(类似于地图视图注释)。当我单击视图中的任何其他位置时,我需要删除注释视图。我应该在哪个事件上删除视图。
I am loading a view(similar to the mapview annotation) on the click of an image. I need to remove the annotation view when I click on any other place in the view. On which event should I remove the view.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
删除视图。Use
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
to remove the view.