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