gpt4 book ai didi

ios - iPhone : touches on UIViewController

转载 作者:行者123 更新时间:2023-11-29 13:51:18 24 4
gpt4 key购买 nike

我有一个 UIViewController,我在上面放了一个 UIImageView,然后是一个 UIScrollView。

我可以很好地处理 UIScrollView 上的触摸,但是我想处理 UIViewController 上的某些触摸。

我只需要触摸 UIScrollView 并保持 5 秒(这部分工作正常)。任何低于我想要传递给 UIViewController 的东西。

在 UISCrollView 上,我称之为:

- (void) touchesBegan: (NSSet *) touches withEvent: (UIEvent *) event
{
// some custom code to process a specific touch.

// all other touches
[super touchesBegan: touches withEvent: event];
}

有没有办法将触摸从 UIScrollView 传递到底部的 UIViewController,或者我是否必须将对 UIViewController 的引用传递到 UIScrollView?

最佳答案

解决了!

需要补充:

[self.nextResponder touchesEnded: touches withEvent:event]; 

到最顶层的 Controller 。

谢谢你!

关于ios - iPhone : touches on UIViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3481763/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com