本文介绍了崩溃报告.. [UITableView(UITableViewInternal)_createPreparedCellForGlobalRow:withIndexPath:]的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我通过testflight在我的应用程序中看到下面的崩溃。我不知道这个崩溃发生在哪里和如何。我有多个UITableViewControllers在我的应用程序(大约10),因此不真正确定哪一块代码粘贴在这里。任何帮助将真正感谢。我已经研究了很多SO的问题,但我没有能够确定一个原因。

  0 Anyvan 0x0019052e testflight_backtrace + 382 
1 Anyvan 0x0019117c TFSignalHandler + 264
2 libsystem_c.dylib 0x3b1b9e92 _sigtramp + 42
3 UIKit 0x34e6654c - [UITableView(UITableViewInternal)_createPreparedCellForGlobalRow:withIndexPath:] + 412
4 UIKit 0x34e4b312 - [UITableView(_UITableViewPrivate)_updateVisibleCellsNow:] + 1310
5 UIKit 0x34e627ce - [UITableView layoutSubviews] + 206
6 UIKit 0x34e1e802 - [UIView(CALayerDelegate)layoutSublayersOfLayer:] + 258
7 QuartzCore 0x34bc8d8a - [CALayer的layoutSublayers] + 214
8 QuartzCore 0x34bc8928 _ZN2CA5Layer16layout_if_neededEPNS_11TransactionE + 460
9 QuartzCore 0x34bc985c _ZN2CA5Layer28layout_and_display_if_neededEPNS_11TransactionE + 16
10 QuartzCore 0x34bc9242 _ZN2CA7Context18commit_transactionEPNS_11TransactionE + 238
11 QuartzCore 0x34bc9050 _ZN2CA11Transaction6commitEv + 316
12 UIKit的0x34e248ea _afterCACommitHandler + 126
13的CoreFoundation 0x32fe86cc __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 20
14的CoreFoundation 0x32fe69c0 __CFRunLoopDoObservers + 276
15的CoreFoundation 0x32fe6d16 __CFRunLoopRun + 742
16的CoreFoundation 0x32f59ebc CFRunLoopRunSpecific + 356
17 CoreFoundation 0x32f59d48 CFRunLoopRunInMode + 104
18 GraphicsServices 0x36b322ea GSEventRunModal + 74
19 UIKit 0x34e6f300 UIApplicationMain + 1120
20 Anyvan 0x000e4c14 main(main.m:17)
21 Anyvan 0x000e4bb7 start + 39


解决方案

请找到这些链接以了解您的问题
Link 1-
p>

链接2-



链接3-



希望这有助于解决您的问题。


I have been seeing the below crash in my app through testflight. I am not understanding where and how this crash happens. I have multiple UITableViewControllers in my app ( around 10 ), hence not really sure which piece of code to paste here. Any help will be really appreciated. I have already researched lots of SO questions, but I havent been able to nail down a cause.

0 Anyvan 0x0019052e testflight_backtrace + 382
1 Anyvan 0x0019117c TFSignalHandler + 264
2 libsystem_c.dylib 0x3b1b9e92 _sigtramp + 42
3 UIKit 0x34e6654c -[UITableView(UITableViewInternal)   _createPreparedCellForGlobalRow:withIndexPath:] + 412
4 UIKit 0x34e4b312 -[UITableView(_UITableViewPrivate) _updateVisibleCellsNow:] + 1310
5 UIKit 0x34e627ce -[UITableView layoutSubviews] + 206
6 UIKit 0x34e1e802 -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 258
7 QuartzCore 0x34bc8d8a -[CALayer layoutSublayers] + 214
8 QuartzCore 0x34bc8928 _ZN2CA5Layer16layout_if_neededEPNS_11TransactionE + 460
9 QuartzCore 0x34bc985c _ZN2CA5Layer28layout_and_display_if_neededEPNS_11TransactionE + 16
10 QuartzCore 0x34bc9242 _ZN2CA7Context18commit_transactionEPNS_11TransactionE + 238
11 QuartzCore 0x34bc9050 _ZN2CA11Transaction6commitEv + 316
12 UIKit 0x34e248ea _afterCACommitHandler + 126
13 CoreFoundation 0x32fe86cc __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 20
14 CoreFoundation 0x32fe69c0 __CFRunLoopDoObservers + 276
15 CoreFoundation 0x32fe6d16 __CFRunLoopRun + 742
16 CoreFoundation 0x32f59ebc CFRunLoopRunSpecific + 356
17 CoreFoundation 0x32f59d48 CFRunLoopRunInMode + 104
18 GraphicsServices 0x36b322ea GSEventRunModal + 74
19 UIKit 0x34e6f300 UIApplicationMain + 1120
20 Anyvan 0x000e4c14 main (main.m:17)
21 Anyvan 0x000e4bb7 start + 39
解决方案

Please find these link to understand your problemLink 1-here

Link 2-here

Link 3-here

Hope this will help to sort out your problem.

这篇关于崩溃报告.. [UITableView(UITableViewInternal)_createPreparedCellForGlobalRow:withIndexPath:]的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 09:34