私はIPOD Appを作成しており、JSONフィードから作成したNSDictionaryを持っています。私はこれをNSMutableArrayに変換しようとしています。私は辞書をループしてキーと値を配列に書く必要があることを知っていますが、コードに問題があります。これはこれを達成するためのものです。iOS 5 NSDictionaryをNSMutableArrayに変換する際の問題?
////ウェブサイト NSError *エラーからJSONデータを取得します。 NSDictionaryの* JSON = [NSJSONSerialization JSONObjectWithData:データオプション:kNilOptionsエラー:&エラー]。事前に
////// convert the dictionary to an NSMutableArray
// create an empty array of size equal to the number of json records
NSMutableArray *users = [[NSMutableArray alloc] initWithCapacity:1];
// Begin filling the array
NSInteger dCount = [json count];
for(int i=0; i < dCount; i++)
{
User *user = [[User alloc] init];
user.emailAddress = [json objectForKey: @"emailAddress"];
user.password = [json objectForKey: @"password"];
user.password = [json objectForKey: @"password"];
[users addObject:user];
NSLog(@"This is record: %@", i);
}
感謝。