0

NSDictionaryのキーをコピーした後、クラッシュします。私はARCを使用しています。理由は何ですか?NSDictionary mutableCopyはexc_bad_accessを発生させます

-(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

はおそらくtableが設定されていない、またはゼロ値に設定されています。 NSLog(@"TABLE ->%@"<- TABLE, table);を試して、tableの値が何であるかを確認してください。

関連する問題