私は自分の Mac とエミュレーターでテストするアプリを持っています。しかし、iPhone でテストしようとすると、または他の人が実行しようとします。どこかでエラーが発生し、これを送信します。
2012-06-12 11:27:26.932 CogniviaTaxi2012[23463:707] 勇気: ナンシー、ムルト エ モゼル、フランス
2012-06-12 11:27:26.933 CogniviaTaxi2012[23463:707] 勇気: 21758
2012-06-12 11:27:27.097 CogniviaTaxi2012[23463:707] 支払い:FR
2012-06-12 11:27:27.228 CogniviaTaxi2012[23463:707] * キャッチされていない例外 'NSInvalidArgumentException' が原因でアプリを終了しています。理由: '* -[__NSArrayM insertObject:atIndex:]: オブジェクトを nil にすることはできません'
DetailTaxi *detailView = [[DetailTaxi alloc] initWithNibName:nil bundle:[NSBundle mainBundle]];
NSString *nomville = [[_jsonDict objectAtIndex:indexPath.row] objectForKey:@"label"];
NSString *idVille = [[_jsonDict objectAtIndex:indexPath.row] objectForKey:@"id"];
detailView.title = nomville;
detailView.idVille = idVille;
NSLog(@"Valor: %@", nomville);
NSLog(@"Valor: %@", idVille);
AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
NSManagedObjectContext *context = [appDelegate managedObjectContext];
NSManagedObject *villesR = [NSEntityDescription
insertNewObjectForEntityForName:@"Ville"
inManagedObjectContext:context];
[villesR setValue:idVille forKey:@"idV"];
[villesR setValue:nomville forKey:@"nom"];