0
Apple JSONを解析する必要がありますが、少し問題があります。私は今これをやっている:JSON解析でnullが返される
問題はここにある:この行で
- (void)fetchedData:(NSData *)responseData {
NSError* error;
NSDictionary* json = [NSJSONSerialization JSONObjectWithData:responseData
options:kNilOptions
error:&error];
NSNumber *resultCount = [json objectForKey:@"resultCount"];
NSLog(@"%i", [resultCount intValue]);
NSArray * AppStoreUrlParse = [json objectForKey:@"results"];
NSDictionary* StoreParse = [AppStoreUrlParse objectAtIndex:0];
NSLog(@"%@", [json objectForKey:@"price"]);
}
:
NSLog(@"%i", [resultCount intValue]);
のNSLogがreturingさ:JSON(http://itunes.apple.com/lookup?id=387633954)
のように1をしかし、この行の
NSLog(@"%@", [json objectForKey:@"price"]);
のNSLogを返します(NULL)
誰もが、私は、JSONから価格を得ることができる方法を知っていますか?
ありがとうございました、あなたの答えを4分で受け入れるつもりです – Jones