我想将我的应用程序放在 AppStore 中,但 ItunesConnect 会发现崩溃。当我在Xcode上测试它工作正常,没有崩溃。我象征着崩溃日志,但我希望得到与 ItunesConnect 相同的结果:崩溃。
ItunesConnect 是否有特殊的配置来测试应用? 也许我必须更改 Xcode 中的一些参数?
感谢您的帮助!
Crashlog:
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
答案 0 :(得分:1)
我建议你在armv7,arm64等所有架构上测试你的应用程序。 我看到一些第三方代码不支持特定的体系结构,或者体系结构和操作系统版本的组合。据报道,SKSTableView是iOS 7和arm64架构崩溃的一个例子。 确保不是这种情况。
此外,集成崩溃报告API以确保即使在Apple Reviewers进行测试时也能获得报告,这样您就可以获得崩溃的版本和设备信息......
事情会更容易提问和回答......;)