3

嗨,我在 AppStore 上有一个应用程序,我做了一个更新,在模拟器和我的 iPad 4 上运行良好,所以我发送到 AppStore 进行发布。该应用程序使用在此版本中更新的 Sqlite 数据库。我收到消息 App 没问题并获得 Apple Ready to Sale 的批准,因此我在 iPad 上下载了该 App 以查看它是否正常工作,但它只是在 Navigation Controller 中崩溃。

我想知道苹果人是否不会遇到应用程序崩溃,你能给我一些关于如何解决这个问题的建议吗?

谢谢这是来自主办方的崩溃日志

    Code Type:       ARM (Native)
Parent Process:  launchd [1]

Date/Time:       2013-03-31 17:45:48.047 +0200
OS Version:      iOS 6.1.2 (10B146)
Report Version:  104

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Crashed Thread:  0

Last Exception Backtrace:
0   CoreFoundation                0x323bc3e2 __exceptionPreprocess + 158
1   libobjc.A.dylib               0x3a23c95e objc_exception_throw + 26
2   CoreFoundation                0x323bff2c -[NSObject(NSObject) doesNotRecognizeSelector:] + 180
3   CoreFoundation                0x323be648 ___forwarding___ + 388
4   CoreFoundation                0x32316204 _CF_forwarding_prep_0 + 20
5   APP                       0x0010ec28 -[GADObjectPrivate loadPrivateRequest:autoRefresh:] (GADObjectPrivate.m:412)
6   APP                       0x00110988 -[GADObjectPrivate loadRequest:] (GADObjectPrivate.m:878)
7   APP                       0x0010e108 -[GADBannerView loadRequest:] (GADBannerView.m:267)
8   APP                       0x000ea918 -[ElementDetail viewDidLoad] (ElementDetail.m:61)
9   UIKit                         0x341ea574 -[UIViewController loadViewIfRequired] + 360
10  UIKit                         0x3423f1f2 -[UIViewController contentScrollView] + 22
11  UIKit                         0x3423f138 -[UINavigationController _computeAndApplyScrollContentInsetDeltaForViewController:] + 24
12  UIKit                         0x3423f01c -[UINavigationController _layoutViewController:] + 28
13  UIKit                         0x3423ef48 -[UINavigationController _updateScrollViewFromViewController:toViewController:] + 268
14  UIKit                         0x3423e694 -[UINavigationController _startTransition:fromViewController:toViewController:] + 60
15  UIKit                         0x3423e57c -[UINavigationController _startDeferredTransitionIfNeeded:] + 320
16  UIKit                         0x3422cb56 -[UINavigationController pushViewController:transition:forceImmediate:] + 854
17  UIKit                         0x3422c7f6 -[UINavigationController pushViewController:animated:] + 34
18  APP                       0x000e6982 -[CardsViewController tableView:didSelectRowAtIndexPath:] (CardsViewController.m:323)
19  UIKit                         0x3428d318 -[UITableView _selectRowAtIndexPath:animated:scrollPosition:notifyDelegate:] + 872
20  UIKit                         0x3430fda4 -[UITableView _userSelectRowAtPendingSelectionIndexPath:] + 152
21  Foundation                    0x32ccb652 __NSFireDelayedPerform + 446
22  CoreFoundation                0x32391852 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 10
23  CoreFoundation                0x323914fe __CFRunLoopDoTimer + 270
24  CoreFoundation                0x32390172 __CFRunLoopRun + 1226
25  CoreFoundation                0x32303238 CFRunLoopRunSpecific + 352
26  CoreFoundation                0x323030c4 CFRunLoopRunInMode + 100
27  GraphicsServices              0x35ebd336 GSEventRunModal + 70
28  UIKit                         0x3421f2b4 UIApplicationMain + 1116
29  APP                      0x000e31ae main (main.m:14)
30  libdyld.dylib                 0x3a669b1c start + 0
4

1 回答 1

0

根据这个答案,您应该-loadRequest:拨打电话viewWillAppear,而不是viewDidLoad

谷歌似乎没有将源代码发布到GADObjectPrivate,因此很难验证它是否有效或为什么有效。

于 2013-03-31T20:07:58.547 回答