2つの質問があります:以下のJSONから「Elements」と「Categori」をコアデータ永続ストア/データベースに取得する必要があります。次のコード(以下のコード)を試しましたが、行き詰まり、混乱しています。それを正しい方法でやっていますか?
また、ネストされたobjectForKeyを使用して要素配列を取得しようとするとエラーが発生します。なぜ、どのように修正できますか?
Elementsは配列なのでわかりませんが、エラーはありますか?
reason: '-[__NSCFArray objectForKey:]: unrecognized selector sent to instance 0x1cd2f4a0'
次のようにAFNetworkingでJSONを受け取ります。
[[MyAPIClient sharedClient] getPath:domain parameters:nil success:^(AFHTTPRequestOperation *operation, id JSON) {
//IS THIS THE RIGHT WAY TO PROCESS NESTED JSON DATA IN CORE DATA?
NSError *error;
NSDictionary *jsonDict = [NSJSONSerialization JSONObjectWithData:JSON options:0 error:&error];
NSArray *arrayOfCategoriDictionaries = (NSArray *)[[jsonDict objectForKey:@"Manifacture"] objectForKey:@"Categori"];
//Categori array to Core data
for( NSDictionary *d in arrayOfCategoriDictionaries) {
Categori *cat = [NSEntityDescription insertNewObjectForEntityForName:@"Categori" inManagedObjectContext:_managedObjectContext];
}
//Elements to core data, get an error with objectForKey:@"Elements" ?
NSArray *arrayOfElementsDictionaries = [[[jsonDict objectForKey:@"Manifacture"] objectForKey:@"Categori"] objectForKey:@"Elements"];
for(NSDictionary *d1 in arrayOfRetDictionaries) {
Elements *elements = [NSEntityDescription insertNewObjectForEntityForName:@"Elements" inManagedObjectContext:_managedObjectContext];
}
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
if (![_managedObjectContext save:&error]) {
NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
}
}];
ネストされたjsonデータ:
{
"Manifacture": {
"Categori": [
{
"Elements": [
{
"Id": 1,
"Name": "Door",
"Description": "Black door with window",
"Price": 149,
"CategoriId": 1
}
],
"Id": 1,
"Name": "Forret",
"ElementsId": 1,
"Manifacture_Id": 1
}
],
"CarSet": [],
"Id": 1,
"Name": "Hummer",
"Description": "A big car"
},
"Id": 2,
"Name": "Hummer Car Factory",
"Contactperson": "Adil Bujas",
"Location": "California",
"Info": "Hummer LTD",
"SearchThumbnail": "none",
"CarPicture": "none",
"Doors": 5,
"webpages_MembershipUserId": 4,
"Manifacture_Id": 1
}
よろしくお願いします。