次のコードを使用して配列からjson文字列を作成します。nsmutablearrayから一連のjson文字列を作成します。
for (int k = 0 ; k < [[self totalCompliancesCount] count]; k++) {
delayedJsonObject = [[NSMutableDictionary alloc]init];
[delayedJsonObject setValue:[[self totalCompliancesCount] objectAtIndex:k] forKey:@"t"];
[delayedJsonObject setValue:[[self totalCompliedCompliancesCount] objectAtIndex:k] forKey:@"y"];
delayedJsonData = [NSJSONSerialization dataWithJSONObject:delayedJsonObject options:0 error:nil];
delayedJsonString = [[NSString alloc] initWithBytes:[delayedJsonData bytes] length:[delayedJsonData length] encoding:NSUTF8StringEncoding];
}
[[self totalCompliancesCount] count]
6ですのでdelayedJsonStringは、その中に6 jsonobjectsを含むことがあるが、それは最後のJSONオブジェクトが含まれています。 これをどのように並べ替えることができますか?
最後にすべての反復で新しい 'delayedJsonString'オブジェクトを作成しています。反復値 –