我在App Store中被賦予以下錯誤消息的應用程序:從哪裏開始尋找的main.m線SIGSEGV的原因15
SIGSEGV中的main.m線15
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
從哪裏開始尋找這個錯誤的原因的任何想法?
您是否在代碼上運行靜態分析器來查找內存管理問題? – bneely
不...但使用XCode 5,我已經在Debug Navigator中觀察了內存的使用情況,並沒有什麼不同尋常(6.3 MB)。根據堆棧跟蹤,它看起來甚至沒有進入第一個視圖控制器。 – SpokaneDude
appMemTotal的度量單位是什麼,它是42.4 ...? – bneely