iPad 通知中心小部件无响应

发布于 2024-12-29 02:34:25 字数 255 浏览 0 评论 0原文

我为 iOS 5 通知中心制作了一个小部件,它实现了 UISliderUITapGestureRecognizer

gestureRecognizer 工作正常,但 UISlider 反应非常迟钝,如果触摸并拖动拇指,它只会移动少量。

它不会移动,直到再次着陆。有没有办法绕过这个限制? (我没有加载上面的任何视图,它在 iPhone 和 iPod Touch 上运行良好)。

I made a widget for the iOS 5 notification center that implements a UISlider along with a UITapGestureRecognizer.

The gestureRecognizer works fine, but the UISlider is very unresponsive and will only move a small amount if the thumb is touched and dragged.

It will not move until another touch down. Is there a way to circumvent this limitation? (I didn't load any views above it, it works fine on the iPhone and iPod Touch).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晒暮凉 2025-01-05 02:34:25

我终于找到了解决它的方法。
您应该在 viewWillAppear 上将超级视图gesturerecogniser 的cancelTouchesInView 属性设置为NO。

- (void)viewWillAppear {
    if (deviceIsIPAD()) {
        UIView *list = [[objc_getClass("SBBulletinListController") sharedInstance] listView];
        for (UIGestureRecognizer *gr in list.gestureRecognizers) {
            gr.cancelsTouchesInView = NO;
        }
    }

}

I finally found a way to fix it.
You should set the superviews gesturerecogniser's cancelTouchesInView property to NO on viewWillAppear.

- (void)viewWillAppear {
    if (deviceIsIPAD()) {
        UIView *list = [[objc_getClass("SBBulletinListController") sharedInstance] listView];
        for (UIGestureRecognizer *gr in list.gestureRecognizers) {
            gr.cancelsTouchesInView = NO;
        }
    }

}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文