collectionview scrollToItemAtIndexPath使应用程序崩溃

Pip*_*ppo 2 xcode ios uicollectionview swift swift3

所以我在我的viewDidLoad函数中放置了以下代码,它使应用程序崩溃。任何想法为什么会发生这种情况或解决方法?

self.collectionView?.scrollToItem(at: IndexPath(row: 0, section: 0), at: .top, animated: true)
Run Code Online (Sandbox Code Playgroud)

---------------编辑---------------添加了错误日志

2016-12-26 18:40:08.354 ParseStarterProject-Swift[73829:1561943] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'attempt to scroll to invalid index path: <NSIndexPath: 0x608000226400> {length = 2, path = 0 - 0}'
*** First throw call stack:
(
    0   CoreFoundation                      0x00000001066e7d4b __exceptionPreprocess + 171
    1   libobjc.A.dylib                     0x000000010614921e objc_exception_throw + 48
    2   CoreFoundation                      0x00000001067512b5 +[NSException raise:format:] + 197
    3   UIKit                               0x0000000107fb0e44 -[UICollectionView scrollToItemAtIndexPath:atScrollPosition:animated:] + 224
    4   ParseStarterProject-Swift           0x00000001051a963c _TFC25ParseStarterProject_Swift18PackViewController13viewDidAppearfSbT_ + 700
    5   ParseStarterProject-Swift           0x00000001051a9741 _TToFC25ParseStarterProject_Swift18PackViewController13viewDidAppearfSbT_ + 49
    6   UIKit                               0x0000000107808a6c -[UIViewController _setViewAppearState:isAnimating:] + 945
    7   UIKit                               0x0000000107809388 -[UIViewController _endAppearanceTransition:] + 197
    8   UIKit                               0x00000001077de28d -[UIPresentationController transitionDidFinish:] + 834
    9   UIKit                               0x00000001079f5f83 -[_UICurrentContextPresentationController transitionDidFinish:] + 42
    10  UIKit                               0x00000001077e1ef0 __56-[UIPresentationController runTransitionForCurrentState]_block_invoke_2 + 183
    11  UIKit                               0x00000001081a356c -[_UIViewControllerTransitionContext completeTransition:] + 102
    12  UIKit                               0x00000001077daddc -[UITransitionView notifyDidCompleteTransition:] + 251
    13  UIKit                               0x00000001077daaef -[UITransitionView _didCompleteTransition:] + 1539
    14  UIKit                               0x00000001077dd51c -[UITransitionView _transitionDidStop:finished:] + 104
    15  UIKit                               0x00000001076edbd5 -[UIViewAnimationState sendDelegateAnimationDidStop:finished:] + 222
    16  UIKit                               0x00000001076ee12a -[UIViewAnimationState animationDidStop:finished:] + 136
    17  QuartzCore                          0x0000000107392648 _ZN2CA5Layer23run_animation_callbacksEPv + 316
    18  libdispatch.dylib                   0x00000001098940cd _dispatch_client_callout + 8
    19  libdispatch.dylib                   0x00000001098748a4 _dispatch_main_queue_callback_4CF + 406
    20  CoreFoundation                      0x00000001066abe49 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    21  CoreFoundation                      0x000000010667137d __CFRunLoopRun + 2205
    22  CoreFoundation                      0x0000000106670884 CFRunLoopRunSpecific + 420
    23  GraphicsServices                    0x000000010bf76a6f GSEventRunModal + 161
    24  UIKit                               0x0000000107660c68 UIApplicationMain + 159
    25  ParseStarterProject-Swift           0x00000001051966cf main + 111
    26  libdyld.dylib                       0x00000001098e068d start + 1
    27  ???                                 0x0000000000000001 0x0 + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb) 
Run Code Online (Sandbox Code Playgroud)

San*_*ari 5

可能的问题

您的collectionView数据源是否有任何数据,如果为nil,numberOfItemsInSection将返回0,并且因为您要让collectionView滚动到indexPath IndexPath(row: 0, section: 0)且因为那里的单元格可能崩溃。

  1. 确保您的数据源不为零或总是返回至少一个单元格

  2. ViewDidAppear在collectionView中重新加载数据后滚动到指定的indexPath (假定在调用ViewDidAppear时您将拥有一些数据)

变通

indexPath(0,0)在询问collectionView滚动到指定的indexPath之前,请询问您的数据源是否存在一个单元格

    if let _ = self.collectionView?.dataSource?.collectionView(self.collectionView!, cellForRowAt: IndexPath(row: 0, section: 0)) {
        self.collectionView?.scrollToItem(at: IndexPath(row: 0, section: 0), at: .top, animated: true)
    }
Run Code Online (Sandbox Code Playgroud)

编辑:

正如您已经提到的,数据来自服务器,正确的解决方案是在收到Web响应后重新加载collectionView。

在webservice调用的完成块中,重新加载collectionView,然后滚动到特定的索引路径。

如果您使用的是alamo fire或AFNetworking,则在主线程上调用完成块,以防万一您的完成块在后台线程中执行,请确保在重新加载和滚动之前切换到主线程:)

希望对您有所帮助:)快乐编码:)