我的應用程序崩潰的一個indefined原因,我結束了與此日誌:iOS如何調試崩潰?
的Myproj [9442:707] - [NSDecimalNumber長]:無法識別的選擇發送到實例0x2e6690
我能有什麼信息? 9442:707是什麼意思,它是一個行號?
編輯
在我的代碼,我加入了類似的痕跡:
NSLog(@"KEYS:%@", myKeys);
NSLog(@"KEYS ORDERED:%@", [myKeys sortedArrayUsingSelector:@selector(compare:)]);
但第二線崩潰。我所看到的「長度」錯誤似乎來自這一行(儘管我沒有在任何地方使用[長度])。
2011-11-11 14:20:18.936 MyProj[9570:707] KEYS:(
330,
359,
362,
367,
352,
351,
364,
331,
350
)
... then crash... with above error
給這個簽出:如何跟蹤和調試的iOS崩潰:http://ios-blog.co.uk/tutorials/how-to-trace-and-debug-an-ios-crash-part -1/ – MarkP