UIScrollView with touchesMoved not called(未调用带有 touchesMoved 的 UIScrollView)
问题描述
我有一个包含 UIImageView 的 UIScrollView.UIScrollView 允许缩放和平移 UIImageView.
I've a UIScrollView that contains an UIImageView. The UIScrollView lets zooming and panning through the UIImageView.
问题是我每次都想知道手指的移动,我试图用 touchesMoved 方法捕捉事件.但它不起作用,尽管正确调用了 touchesBegan 和 touchesEnded.
The problem is that I would like know the finger movement every time, and I'm trying to catch the event with touchesMoved method. But it's not working, despite touchesBegan and touchesEnded that are called correctly.
实际上,如果手指移动非常小,并且 UIScrollView 没有开始平移,就会调用 touchesMoved.在 UIScrollView 开始移动的那一刻,事件停止被调用.
In fact, touchesMoved is called if the finger movement is really small, and the UIScrollView doesn't started panning. At the moment that UIScrollView starts getting moved, the event stops being called.
有人知道问题出在哪里以及如何解决吗?我想也许里面的 UIImageView 正在捕捉事件或类似的东西.
Somebody know what's the problem and how to fix it? I've thought that maybe the UIImageView inside is catching the event or something like that.
推荐答案
滚动视图属性 canCancelContentTouches = NO
允许将触摸事件向上传递到响应者链.
The scrollview property canCancelContentTouches = NO
allows the touch events to be passed up the responder chain.
这篇关于未调用带有 touchesMoved 的 UIScrollView的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:未调用带有 touchesMoved 的 UIScrollView


基础教程推荐
- iOS4 创建后台定时器 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01