在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.
答案 0 :(得分:0)
据推测,table
尚未设置,或已设置为零值。请尝试NSLog(@"TABLE ->%@"<- TABLE, table);
查看table
的值是什么。