我在UITableView中有使用自定义类的视频列表。这是tabbar应用程序。当我向下滚动到第8个视频,然后转到下一个屏幕,当我回到视频列表屏幕时,应用程序崩溃了。我试图调试,但无法弄清楚问题。这是我从调试器获得的。
2016-06-08 12:47:46.919 Votocast[2283:453809] *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayM objectAtIndex:]: index 8 beyond bounds for empty array'
*** First throw call stack:
(
0 CoreFoundation 0x0000000108ba9d85 __exceptionPreprocess + 165
1 libobjc.A.dylib 0x000000010a7f9deb objc_exception_throw + 48
2 CoreFoundation 0x0000000108a87804 -[__NSArrayM objectAtIndex:] + 212
3 Votocast 0x0000000107dfd4de -[HomeView tableView:cellForRowAtIndexPath:] + 958
4 UIKit 0x000000010b6914f4 -[UITableView _createPreparedCellForGlobalRow:withIndexPath:willDisplay:] + 766
5 UIKit 0x000000010b69162c -[UITableView _createPreparedCellForGlobalRow:willDisplay:] + 74
6 UIKit 0x000000010b665c8a -[UITableView _updateVisibleCellsNow:isRecursive:] + 2799
7 UIKit 0x000000010b69a686 -[UITableView _performWithCachedTraitCollection:] + 92
8 UIKit 0x000000010b681344 -[UITableView layoutSubviews] + 224
9 UIKit 0x000000010b5ee980 -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 703
10 QuartzCore 0x0000000109ff1c00 -[CALayer layoutSublayers] + 146
11 QuartzCore 0x0000000109fe608e _ZN2CA5Layer16layout_if_neededEPNS_11TransactionE + 366
12 QuartzCore 0x0000000109fe5f0c _ZN2CA5Layer28layout_and_display_if_neededEPNS_11TransactionE + 24
13 QuartzCore 0x0000000109fda3c9 _ZN2CA7Context18commit_transactionEPNS_11TransactionE + 277
14 QuartzCore 0x000000010a008086 _ZN2CA11Transaction6commitEv + 486
15 UIKit 0x000000010b52e72e _UIApplicationHandleEventQueue + 7135
16 CoreFoundation 0x0000000108acf301 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
17 CoreFoundation 0x0000000108ac522c __CFRunLoopDoSources0 + 556
18 CoreFoundation 0x0000000108ac46e3 __CFRunLoopRun + 867
19 CoreFoundation 0x0000000108ac40f8 CFRunLoopRunSpecific + 488
20 GraphicsServices 0x000000010d4ebad2 GSEventRunModal + 161
21 UIKit 0x000000010b533f09 UIApplicationMain + 171
22 Votocast 0x0000000107e48d8f main + 111
23 libdyld.dylib 0x000000010cc0792d start + 1
24 ??? 0x0000000000000001 0x0 + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException
在viewWillAppear中,我从该数组中删除所有对象并调用webservice。但在我从webservice获得响应之前,应用程序崩溃到了cellForRowAtIndexPath中的一行。你的小帮助将不胜感激。
编辑:
我注意到app只会在我的tableview减速时崩溃,然后我转到下一个屏幕然后回到视频列表屏幕。我还没有做过任何关于减速的代码。
答案 0 :(得分:3)
显然,您的数据源代理无法正常工作。如果清空数据源使用的数组,则必须调用reloadData。当您获得新数据时,再次调用reloadData。
但是,您不应该以这种方式刷新数据。您应该显示旧数据,直到新数据到达。
答案 1 :(得分:2)
您在viewWillAppear
方法中清除所有对象来自数组但是,之后是否重新加载了表格视图。
因为这会导致崩溃。删除所有对象但tableview尝试转到最后滚动的索引。所以它导致了崩溃。
希望这会对你有帮助。
答案 2 :(得分:0)
谢谢你们。我修好了它。我实际上是在viewDidLoad中分配数组,只是在viewWillAppear中从该数组中删除对象。所以我保留了我的数据而不是在viewWillAppear中调用webservice。