我有一个NSMutableArray
从中UITableView
提取数据的。我想[NSJSONSerialization JSONObjectWithData:data]
在这个奇异数组中添加两个。执行以下操作只是替换了之前添加到数组中的信息,我想在下面添加新请求。
jsonArray = [NSJSONSerialization JSONObjectWithData:data options:0 error:&error]
我有一个NSMutableArray
从中UITableView
提取数据的。我想[NSJSONSerialization JSONObjectWithData:data]
在这个奇异数组中添加两个。执行以下操作只是替换了之前添加到数组中的信息,我想在下面添加新请求。
jsonArray = [NSJSONSerialization JSONObjectWithData:data options:0 error:&error]
NSMutableArray *jsonArray = [[NSMutableArray alloc] init];
NSArray *json1 = [NSJSONSerialization JSONObjectWithData:data1 ...];
if (json1 != nil) {
[jsonArray addObjectsFromArray:json1];
} else {
// JSON error in data1
}
NSArray *json2 = [NSJSONSerialization JSONObjectWithData:data2 ...];
if (json2 != nil) {
[jsonArray addObjectsFromArray:json2];
} else {
// JSON error in data2
}