如何解决“无法确定滚动的导航方向”错误

问题描述 投票:27回答:3

我最常见的错误是“由于无法确定滚动方向”,关于如何解决该问题的任何想法?

这是最后一个异常回溯:

 1. CoreFoundation   __exceptionPreprocess + 131
 2. libobjc.A.dylib  _objc_exception_throw + 39
 3. CoreFoundation   +[NSException raise:format:] + 1
 4. Foundation   -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 91
 5. UIKit    __54-[_UIQueuingScrollView _didScrollWithAnimation:force:]_block_invoke + 221
 6. UIKit    -[_UIQueuingScrollView _didScrollWithAnimation:force:] + 567
 7. UIKit    -[_UIQueuingScrollView _scrollViewAnimationEnded:finished:] + 73
 8. UIKit    -[UIAnimator stopAnimation:] + 471
 9. UIKit    -[UIAnimator(Static) _advanceAnimationsOfType:withTimestamp:] + 285
 10. UIKit   -[UIAnimator(Static) _LCDHeartbeatCallback:] + 53
 11. QuartzCore  CA::Display::DisplayLinkItem::dispatch() + 99
 12. QuartzCore  CA::Display::DisplayLink::dispatch_items(unsigned long long, unsigned long long, unsigned long long) + 345
 13. IOMobileFramebuffer     IOMobileFramebufferVsyncNotifyFunc + 105
 14. IOKit   _IODispatchCalloutFromCFMessage + 249
 15. CoreFoundation  __CFMachPortPerform + 137
 16. CoreFoundation  __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 35
 17. CoreFoundation  __CFRunLoopDoSource1 + 347
 18. CoreFoundation  __CFRunLoopRun + 1399
 19. CoreFoundation  _CFRunLoopRunSpecific + 523
 20. CoreFoundation  _CFRunLoopRunInMode + 107
 21. GraphicsServices    _GSEventRunModal + 139
 22. UIKit   _UIApplicationMain + 1137
 23. MyApp   main (main.m:13)

UPDATE:我终于设法重现了模拟器上的错误,即当我触摸视图时,同时,UIPageViewController滚动动画以编程方式启动。基本上,如果您通过编程方式将ViewViewsControllers设置为yes,然后滚动动画。如果在滚动动画开始之前触摸屏幕的任何部分,将发生以下崩溃***断言失败-[_ UIQueuingScrollView _didScrollWithAnimation:force:],/ SourceCache / UIKit / UIKit-2372 / _UIQueuingScrollView.m:778如here所述。

我还下载了Apple的PhotoScroller示例应用程序,并通过程序化页面更改对其进行了编辑,它们具有相同的错误。

我的解决方案是如果用户当前正在触摸屏幕,则不触发页面更改,您也可以更改动画以卷曲或删除动画。

ios iphone debugging ios7 uipageviewcontroller
3个回答
8
投票

理想情况下,我们想知道底层的UIScrollView是被拖动还是正在减速。但是Apple不允许公共访问页面控制器中的UIScrollView,因此我们可以通过BOOL通过这两个委托来跟踪页面控制器的过渡状态。

- (void)pageViewController:(UIPageViewController *)pageViewController willTransitionToViewControllers:(NSArray *)pendingViewControllers
{
    self.transitioning = YES;
}

- (void)pageViewController:(UIPageViewController *)pageViewController didFinishAnimating:(BOOL)finished previousViewControllers:(NSArray *)previousViewControllers transitionCompleted:(BOOL)completed
{
    if (finished) {
        self.transitioning = NO;
    }
}

在您以编程方式转换页面视图的代码中,仅当页面控制器尚未转换时才继续。

if (!self.isTransitioning) {
    [self.pageController setViewControllers:@[toViewController]
                                  direction:UIPageViewControllerNavigationDirectionForward
                                   animated:YES
                                 completion:nil];
}

4
投票

正如我在问题更新中提到的,在以下情况下,更改页面动画结束时,UIPageViewController会崩溃:

  • 以编程方式更改页面
  • 页面切换动画
  • TransitionStyle等于UIPageViewControllerTransitionStyleScroll
  • 开始页面切换时用户正在触摸屏幕

通过添加程序化页面更改,我能够重现Apple PhotoScroller示例应用程序中的错误。因此,该错误似乎是苹果的错。

由于我无法解决该错误,因此删除了触发该错误的条件之一(等待更好的解决方案)。我不能使用卷曲过渡(UIPageViewControllerTransitionStyleCurl)或删除过渡动画。这两种解决方案均有效。因此,当用户触摸屏幕时,我不会通过以下行触发程序化页面更改

UIViewController* currentViewController = [self.viewControllers objectAtIndex:0];
if(currentViewController.view.isBeingTouch){
        ContentViewController *nextViewController = [[ContentViewController alloc] init];
        NSArray *viewControllers =;
        [self setViewControllers: @[loadingController] direction:UIPageViewControllerNavigationDirectionForward animated:YES completion:NULL];
}

以currentViewController.view为UIView的子类,在标题中实现以下属性

@property (nonatomic, assign) BOOL isBeingTouch;

以及以下主要方法

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
    _isBeingTouch = YES;
    [super touchesBegan:touches withEvent:event];
}

- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event{
    _isBeingTouch = NO;
    [super touchesCancelled:touches withEvent:event];
}

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event{
    _isBeingTouch = NO;
    [super touchesEnded:touches withEvent:event];
}

-(BOOL)isBeingTouch{

    for (UIView * view in self.subviews){
        if([view isKindOfClass:[UIButton class]]) {
            UIButton * b = (UIButton *) view;
            if(b.isHighlighted)
                return YES;
        }
    }

    return _isBeingTouch;
}

我只是将按钮作为子视图,因此它适用于大多数情况。但是,可能会有更完整的解决方案


0
投票

一个非常hacky的解决方案,但这使我能够防止崩溃。

步骤1:收集完整的bug痕迹

我使用了Firebase Crashlytics,可让我查明问题所在。

就我而言:

Fatal Exception: NSInternalInconsistencyException
Failed to determine navigation direction for scroll

触发UIScrollview内部的崩溃的行是:

scrollView.setContentOffset(CGPoint(x: screenWidth, y: 0), animated: false)

[这是我在页面之间执行快速滚动时发生的(到达每一页时,我正在改变滚动行为)。

第2步:寻找替代品

由于该函数没有抛出,因此我不得不寻找逻辑的替代物:

func scrollViewDidScroll(_ scrollView: UIScrollView) {
        //print("contentOffset = \(scrollView.contentOffset.x)")

        if !self.isLeftScrollEnabled {
            disableLeftScroll(scrollView)
        }
        //...
}

func disableLeftScroll(_ scrollView: UIScrollView) {
    let screenWidth = UIScreen.main.bounds.width
        if scrollView.contentOffset.x < screenWidth {
         // ERROR
         scrollView.setContentOffset(CGPoint(x: screenWidth, y: 0), animated: false)
     }

}

我简单地将setContentOffset(_ :)调用替换为(在我的情况下效果很好):

scrollView.isScrollEnabled = false
DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) {
    scrollView.isScrollEnabled = true
} 
© www.soinside.com 2019 - 2024. All rights reserved.