gpt4 book ai didi

cocoa-touch - 重写 -handlePan : in UIScrollView

转载 作者:行者123 更新时间:2023-12-02 17:38:56 28 4
gpt4 key购买 nike

可以在 UIScrollView 子类中重写 -handlePan: 吗?即我的应用程序不会被应用程序商店拒绝?

感谢您分享您的观点。

编辑:在我的子类的另一个方法中调用 -handlePan: 怎么样?

最佳答案

如果有人感兴趣,我所做的不是重写,而是禁用默认的 UIPanGestureRecognizer 并添加另一个映射到我的自定义处理程序的 UIPanGestureRecognizer 实例。

编辑 twerdster:

我是这样做的

//disables the built-in pan gesture
for (UIGestureRecognizer *gesture in scrollView.gestureRecognizers){
if ([gesture isKindOfClass:[UIPanGestureRecognizer class]]){
gesture.enabled = NO;
}
}

//add your own
UIPanGestureRecognizer *myPan = [[UIPanGestureRecognizer alloc] init...];
//customize myPan here
[scrollView addGestureRecognizer:myPan];
[myPan release];

关于cocoa-touch - 重写 -handlePan : in UIScrollView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3253496/

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