如何测试 iTunesConnect 之类的 iOS 应用程序?

How to test iOS app like iTunesConnect?

我想将我的应用程序放到 AppStore 中,但 ItunesConnect 发现崩溃。当我在 Xcode 上测试时,它工作正常,没有崩溃。我用符号表示了 crash log,但我希望得到与 ItunesConnect 相同的结果:crash.

ItunesConnect 是否有用于测试应用程序的特殊 配置? 也许我必须在 Xcode 中更改一些 参数 ?

感谢您的帮助!

崩溃日志:

Incident Identifier: 16DC5C30-0DCB-47D3-863B-9AE9E887DF78
CrashReporter Key:   45e776ed0586d581aba248bf3f23eaf42a231f2c
Hardware Model:      xxx
Process:             BundoranSurfCo [3413]
Path:                /private/var/mobile/Containers/Bundle/Application/19330ECC-7A30-4453-BCBD-E7841A50CD4F/BundoranSurfCo.app/BundoranSurfCo
Identifier:          JardelCompany.BundoranSurfCo
Version:             1.5.1 (1.5)
Code Type:           ARM-64 (Native)
Parent Process:      launchd [1]

Date/Time:           2015-05-18 07:34:27.773 -0700
Launch Time:         2015-05-18 07:29:41.671 -0700
OS Version:          iOS 8.3 (12F69)
Report Version:      105

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

Last Exception Backtrace:
0   CoreFoundation                  0x185bec2d8 0x185ac4000 + 1213144
1   libobjc.A.dylib                 0x19730c0e4 0x197304000 + 32996
2   CoreFoundation                  0x185bf33a4 0x185ac4000 + 1242020
3   CoreFoundation                  0x185bf0154 0x185ac4000 + 1229140
4   CoreFoundation                  0x185af2ccc 0x185ac4000 + 191692
5   BundoranSurfCo                  0x100024f78 -[Contact viewDidLoad] (Contact.m:24)
6   UIKit                           0x18a62cc84 0x18a61c000 + 68740
7   UIKit                           0x18a62c994 0x18a61c000 + 67988
8   UIKit                           0x18a762e68 0x18a61c000 + 1338984
9   UIKit                           0x18a762b58 0x18a61c000 + 1338200
10  UIKit                           0x18a82a378 0x18a61c000 + 2155384
11  UIKit                           0x18a661404 0x18a61c000 + 283652
12  UIKit                           0x18a82a1cc 0x18a61c000 + 2154956
13  UIKit                           0x18a661404 0x18a61c000 + 283652
14  UIKit                           0x18a64a4e0 0x18a61c000 + 189664
15  UIKit                           0x18a829e04 0x18a61c000 + 2153988
16  UIKit                           0x18a661404 0x18a61c000 + 283652
17  UIKit                           0x18a64a4e0 0x18a61c000 + 189664
18  UIKit                           0x18a660da0 0x18a61c000 + 282016
19  UIKit                           0x18a61ffc0 0x18a61c000 + 16320
20  CoreFoundation                  0x185ba42a4 0x185ac4000 + 918180
21  CoreFoundation                  0x185ba1230 0x185ac4000 + 905776
22  CoreFoundation                  0x185ba1610 0x185ac4000 + 906768
23  CoreFoundation                  0x185acd2d4 0x185ac4000 + 37588
24  GraphicsServices                0x18f1bb6fc 0x18f1b0000 + 46844
25  UIKit                           0x18a692fac 0x18a61c000 + 487340
26  BundoranSurfCo                  0x10002b2a4 main (main.m:14)
27  libdyld.dylib                   0x19798aa08 0x197988000 + 10760

我建议您在所有架构(如 armv7、arm64 等)上测试您的应用程序。 我看到一些第三方代码不支持特定的体系结构,或者体系结构和 OS 版本的组合。 SKSTableView 是据报道在 iOS 7 和 arm64 架构下崩溃的示例之一。 确保你不是这种情况。

此外,集成崩溃报告 API 以确保即使在 Apple Reviewers 正在测试时也能获得报告,这样您就可以获得崩溃的版本和设备信息...

事情会更容易提问和回答...;)