gpt4 book ai didi

ios - UIPageViewController 在动画时按住按钮时崩溃

转载 作者:行者123 更新时间:2023-12-01 18:14:08 26 4
gpt4 key购买 nike

我有 UIPageViewController 以编程方式制作动画。问题是它里面的 View Controller 里面有 UIButtons。当我按住一个按钮并等到 UIPageViewController 动画时,应用程序崩溃并出现错误:

'Failed to determine navigation direction for scroll'

我认为我需要做的是在 UIPageviewController 动画之前以某种方式伪造用户释放按钮。

但是, [self.button sendActionsForControlEvents:UIControlEventTouchCancel];似乎没有奏效。 UIControlEventTouchUpInside 也不行.

有没有更好的方法或者我使用 sendActionsForControlEvents错误的?

最佳答案

全部 sendActionsForControlEvents:确实是调用您分配给为按钮传递的控件事件的任何方法。它不调用任何内部方法以编程方式提升触摸或类似的东西。

在您以编程方式为页面 View Controller 设置动画之前,请尝试使用此方法有效地取消对页面 View Controller 内部 ScrollView 的平移手势识别器的任何触摸:

- (void)cancelPanGestureTouchesOfPageViewController:(UIPageViewController *)pageVC
{
// Since UIPageViewController doesn't provide any API to access its scroll view,
// we have to find it ourselves by manually looping through its view's subviews.
for (UIScrollView *scrollView in pageVC.view.subviews) {
if ([scrollView isKindOfClass:[UIScrollView class]]) {

// We've found the scroll view, so use this little trick to
// effectively cancel any touches on its pan gesture recognizer
BOOL enabled = scrollView.panGestureRecognizer.enabled;
scrollView.panGestureRecognizer.enabled = !enabled;
scrollView.panGestureRecognizer.enabled = enabled;
}
}
}

(请注意,这会弄乱 UIPageViewController 的内部 View 层次结构,因此这种方法有点难看,将来可能会中断。我通常不建议这样做,但我认为在这种情况下应该是好的。)

关于ios - UIPageViewController 在动画时按住按钮时崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24435939/

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