*** Terminating app due to uncaught exception 'NSRangeException', reason: '
*** -[__NSArrayM objectAtIndex:]: index 0 beyond bounds for empty array'
*** First throw call stack:
(0x276b2fef 0x35ba6c8b 0x275c5841 0xe78bb 0xfe689 0x2b19e281 0x2b19ebab 0x2aedc981 0x2b19ea63 0x2b19f1b3 0x2afac2df 0x2b1943a7 0x2afa34d7 0x2aecd003 0x2a8eefc1 0x2a8ea7fd 0x2a8ea685 0x2a8ea031 0x2a8e9e1f 0x2a8e3b79 0x27678ffd 0x276766bb 0x27676ac3 0x275c3221 0x275c3033 0x2eff2201 0x2af2f8c9 0x114b59 0x36156aaf)
libc++abi.dylib: terminating with uncaught exception of type NSException
我有很多[NSArray objectAtIndex]
,我不知道哪一个让它崩溃了。
我已经在下面编写了调试代码,但仍然无法捕获它。它在UITableView中,我通过拉下表来加载越来越多的单元格,然后它有时会崩溃。
#import "NSArray+Debug.h"
#import "MLTool.h"
@implementation NSArray (Debug)
- (id)objectAtIndexEx:(NSUInteger)index{
if (self.count<1) {
assert(0);
}
NSString *str=[NSString stringWithFormat:@"count=%d,index=%d,info=%@",self.count,index,[self objectAtIndex:index]];
if ([MLTool isEmptyString:str]
// ||str==
) {
assert(0);
}
NSLogUTF8(@"break:%@",str);
return [self objectAtIndex:index];
}
@end
答案 0 :(得分:3)
您可以在xcode中添加“异常断点”,以便在崩溃时停止调试并检查崩溃的原因。
对于左导航器的section breakpoint / debug,你可以点击左下角的“+”来添加一个“异常断点”。