NSDictionary mutableCopy引发了exc_bad_access

时间:2011-12-04 11:53:10

标签: objective-c copy nsarray automatic-ref-counting resource-leak

在NSDictionary中复制密钥后,我遇到了崩溃。我正在使用ARC。是什么原因?

-(NSArray*) findClosestPointsAroundPoint: (NSDictionary*) p inTable: (NSString*) table {

NSMutableArray* fields = [[p allKeys] mutableCopy];}

(gdb) po table
0xef7b880 does not appear to point to a valid object.

1 个答案:

答案 0 :(得分:0)

据推测,table尚未设置,或已设置为零值。请尝试NSLog(@"TABLE ->%@"<- TABLE, table);查看table的值是什么。