SBJSONを使用してjson URLを解析するとすべて正常です。問題は、タグ "title"をパースするか、他のタグを基本的に解析して、それをstoryという配列に格納する場合です。この配列に格納されている値のリスト全体ではなくタグを含む最後の値のみを取得できます以下の話は、コード..ですjsonを解析中に配列に文字列を格納する方法
- (void)viewDidLoad {
[super viewDidLoad];
jsonurl=[NSURL URLWithString:@"http://www.1040communications.net/sheeba/stepheni/iphone/stephen.json"];
jsonData=[[NSString alloc]initWithContentsOfURL:jsonurl];
jsonArray = [jsonData JSONValue];
items = [jsonArray objectForKey:@"items"];
for (NSDictionary *item in items)
{
story = [NSMutableArray array];
description1 = [NSMutableArray array];
[story addObject:[item objectForKey:@"title"]];
[description1 addObject:[item objectForKey:@"description"]];
}
NSLog(@"booom:%@",story);}
gime私の出力ログにjson –