UIScrollView 带有检测触摸的 imageview
我有一个 UIScrollView 和一个图像视图。图像视图必须响应用户在图像视图上的触摸。但它必须通过滑动和捏合手势滚动和缩放图像。我怎样才能同时启用这两个功能。
I have a UIScrollView and inside that one image view. The imageview must draw on response to user touches on the image view. But it must scroll and zoom the image on swipe and pinch gesture. How can i enable both these functionalities at the same time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须实现 UIScrollViewDelegate
并在 UIImageView 上启用用户交互
然后要检测滑动,您可以使用 UISwipeGestureRecognizer。
You have to implement UIScrollViewDelegate
And enable user interaction on your UIImageView
Then to detect swipes you can use UISwipeGestureRecognizer.