在 Xcode 4.5.2 上,当我的应用程序崩溃时,我的代码中没有崩溃行。崩溃不是象征性的。
我只是把这一行来测试我的崩溃处理程序:
NSMutableArray *arr = [NSMutableArray array];
[arr objectAtIndex:2];
当我的应用程序崩溃时,我收到了这条消息:
libobjc.A.dylib`_cache_getImp:
0x204c048: movl 8(%esp), %ecx
0x204c04c: movl 4(%esp), %edx
0x204c050: pushl %edi
0x204c051: movl 8(%edx), %edi
0x204c054: pushl %esi
0x204c055: movl (%edi), %esi
0x204c057: movl %ecx, %edx
0x204c059: shrl $2, %edx
0x204c05c: andl %esi, %edx
0x204c05e: movl 8(%edi,%edx,4), %eax
0x204c062: testl %eax, %eax
0x204c064: je 0x204c06f ; _cache_getImp + 39
0x204c066: cmpl (%eax), %ecx
0x204c068: je 0x204c080 ; _cache_getImp + 56
0x204c06a: addl $1, %edx
0x204c06d: jmp 0x204c05c ; _cache_getImp + 20
0x204c06f: popl %esi
0x204c070: popl %edi
0x204c071: jmp 0x204c086 ; _cache_getImp + 62
0x204c073: nopw %cs:(%eax,%eax)
0x204c080: popl %esi
0x204c081: popl %edi
0x204c082: movl 8(%eax), %eax
0x204c085: ret
0x204c086: xorl %eax, %eax
0x204c088: ret
0x204c089: nopl (%eax)
没有更多链接到崩溃的行。
谢谢。