iOS 上的手势过滤
如何阻止某些手势发送到 UIScrollView?例如,当滚动视图收到手势时,已将该手势发送到我的代码。如果我的代码发现它相关,就让代码对其做出响应。否则,我希望代码允许滚动视图正常响应它。
我希望这是有道理的:)
How can I block certain gestures from being sent to a UIScrollView? E.g. when the scrollview receives a gesture, have sent that gesture to my code. If my code finds it of relevance, let the code respond to it. Otherwise, I'd like the code to allow the scrollview to respond to it normally.
I hope this makes sense :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找手势识别器。苹果有一个相当不错的 实施指南。
You're looking for gesture recognizers. Apple has a pretty good implementation guide.