0

辞書形式のjsonを取得しようとしていますが、次のコードは機能していないようです。JSON を取得していますが、そこから辞書を取得できません。

NSString *str = [[NSMutableString alloc] initWithData:responseCust encoding:NSUTF8StringEncoding];
NSLog(@"CUSTOMER string -----################  %@", str);

if(str.length>5)
{
     SBJSON *jsonparser=[[SBJSON alloc]init];
     NSDictionary *res= [jsonparser objectWithString:str];

     NSLog(@"Contants Results %@",res);

     [jsonparser release];
     [str release];
}

ありがとうございました。

4

5 に答える 5

1

NSJSONSerializationを使用して利用する

+ (id)JSONObjectWithData:(NSData *)data options:(NSJSONReadingOptions)opt error:(NSError **)error to convert JSON to foundation object.

お役に立てれば

于 2013-09-05T12:26:06.267 に答える