我在 App Store 中有一个应用程序,它给出以下错误消息:
main.m 第 15 行中的 SIGSEGV
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); <-- line 15
}
}
相关用户的详细信息是:
这是堆栈跟踪:
0 libobjc.A.dylib 0x3b446b26 0x3b443000 + 15142
1 UIKit 0x3376c03b 0x33549000 + 2240571
2 UIKit 0x3376bf43 0x33549000 + 2240323
3 UIKit 0x3367132b 0x33549000 + 1213227
4 UIKit 0x33724253 0x33549000 + 1946195
5 UIKit 0x335d4971 0x33549000 + 571761
6 UIKit 0x3354c473 0x33549000 + 13427
7 CoreFoundation 0x30dae1d5 <redacted> + 20
8 CoreFoundation 0x30dabb79 <redacted> + 284
9 CoreFoundation 0x30dabebb <redacted> + 730
10 CoreFoundation 0x30d16ce7 CFRunLoopRunSpecific + 522
11 CoreFoundation 0x30d16acb CFRunLoopRunInMode + 106
12 GraphicsServices 0x359e4283 GSEventRunModal + 138
13 UIKit 0x335b8a41 UIApplicationMain + 1136
14 SalonBook 0x0006c0f5 main (main.m:15) + 28917
关于从哪里开始寻找此错误原因的任何想法?