ロケーション オブジェクト (タイトル、説明、CLLocation) を NSMutableArray に格納しようとしていますが、説明のみが配列に追加されています。すべてのプロパティを使用できますが、オブジェクトではなく配列に追加されるのは説明テキストだけです。私は何を間違っていますか?
NSMutableArray *locArray= [[NSMutableArray alloc]init];
...
NSLog(@"myLoc : %@", myLoc);
NSString *title = myLoc [@"title"];
NSString *desc = myLoc [@"description"];
PFGeoPoint *geoPoint = [[PFGeoPoint alloc]init];
geoPoint = [myLoc objectForKey:@"location"];//location;
NSLog(@"GEO POINT : %f", geoPoint.latitude);
PDLocation *PDLoc = [[PDLocation alloc]initWithName:title description:desc andLocation:CLLocationCoordinate2DMake(geoPoint.latitude, geoPoint.longitude)];
NSLog (@"PDLOC : %@", PDLoc.name);
NSLog (@"PDLOC : %@", PDLoc.description);
NSLog (@"PDLOC : %f", PDLoc.location.latitude);
[locArray addObject:PDLoc] ;