JSON を に取り込もうとしていますNSDictionary
。私は次のことをしています:
NSData *innerData = [json objectForKey:@"data"];
NSLog(@"Inner Description %@", innerData);
NSError* error;
NSDictionary* json = [NSJSONSerialization
JSONObjectWithData:innerData
options:kNilOptions
error:&error];
NSLog(@"dict: %@",json);
このエラーでディクショナリの作成時にクラッシュし続けます。
-[__NSCFDictionary bytes]: unrecognized selector sent to instance 0x1e8d6100
誰でも助けることができますか?