UIScrollView and cancel a zooming pinch gesture(UIScrollView 并取消缩放捏合手势)
问题描述
如何强制取消 UIScrollView
上的缩放打开捏合手势,例如当用户足够"缩放到触发新操作时?
How do you forcibly cancel a zooming open pinch gesture on a UIScrollView
, say when the user has zoomed "sufficiently" far to trigger a new action?
推荐答案
为了防止用户控制器缩放和平移但仍允许程序化缩放和平移滚动视图,最好的方法是覆盖 UIScrollView 的
-addGestureRecognizer
:子类中的方法.
To prevent user-controller zooming and panning but still allow programmatic zooming and panning of a scrollview, the best approach is to override the UIScrollView's
-addGestureRecognizer
: method in a subclass.
-(void)addGestureRecognizer:(UIGestureRecognizer *)gestureRecognizer
{
//Prevent any of the default panning and zooming controls from working
gestureRecognizer.enabled = NO;
[super addGestureRecognizer:gestureRecognizer];
return;
}
每个手势识别器都被禁用,为了更好地控制(例如,允许平移控制但只允许通过双击进行缩放),您只需通过 -isKindOfClass 检查传入的手势识别器:
并酌情禁用.
Each gesture recognizer is simply disabled, for finer control (for ex. allowing the pan control but only allow zooming via a double tap for instance) you'd simply check the incoming gesture recognizer via -isKindOfClass:
and disabling as appropriate.
-(void)addGestureRecognizer:(UIGestureRecognizer *)gestureRecognizer
{
//Prevent zooming but not panning
if ([gestureRecognizer isKindOfClass:[UIPinchGestureRecognizer class]])
{
gestureRecognizer.enabled = NO;
}
[super addGestureRecognizer:gestureRecognizer];
return;
}
希望这会有所帮助.
这篇关于UIScrollView 并取消缩放捏合手势的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:UIScrollView 并取消缩放捏合手势
基础教程推荐
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01