3

こんにちは、AppStore にアプリがあります。シミュレーターと iPad 4 で正常に動作する更新を行ったので、公開のために AppStore に送信しました。アプリは、このバージョンで更新された Sqlite データベースを使用します。App is ok and approval by Apple Ready to Sale というメッセージが表示されたので、iPad に App をダウンロードして動作を確認したところ、Navigation Controller でクラッシュしました。

Apple の人はアプリがクラッシュしないのではないかと思いますが、この問題を解決する方法についてアドバイスをいただけますか?

ありがとう、これはオーガナイザーからのクラッシュ ログです

    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:電話をかける必要があります。viewWillAppearviewDidLoad

Google がソースを にリリースしているようには見えないGADObjectPrivateため、これが機能するかどうか、またはその理由を確認することは困難です。

于 2013-03-31T20:07:58.547 に答える