在iOS 8今日扩展中拖动手势

前端之家收集整理的这篇文章主要介绍了在iOS 8今日扩展中拖动手势前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在Today小部件中使用了UIView子类.该视图使用滑动手势.但是,这些手势要么上下滚动整个通知中心,要么将通知中心从今天切换到通知.

有没有办法阻止触摸事件冒泡到Notification Center滚动视图?使用[self setExclusiveTouch:YES];在子类中没有解决它不幸.

解决方法

Is there any way to prevent the touch events to be bubbled up to the Notification Center scroll view? Using [self setExclusiveTouch:YES]; in the subclass did not solve it unfortunately.

不会.由于远程视图托管您的Today小部件正在内部显示,[self setExclusiveTouch:YES]并不能完全按照您的要求进行操作.

iOS 8.0中的粗略架构是:

[User touch creates a UITouch]
            |
            v
Notification Center (UIScrollView)
            |
            v
  UIRemoteView container
  (presents your UIView)
[crosses process boundary]
            |
            v
your Today widget's UIView

可以认为触摸在穿过过程边界时基本上被克隆了.您的视图的独有触摸欲望仅与您的窗口小部件的进程空间/窗口相关,并且不会向外传播到远程托管您的通知中心.

原文链接:https://www.f2er.com/iOS/334305.html

猜你在找的iOS相关文章