I try to store some Map Informations into a NSMutableArray but it is not working. I think there is only a minor problem that I couldn't find.
At .h File:
@property (retain, nonatomic) NSMutableArray *annotationArray;
at .m File:
MapPoint *placeObject = [[MapPoint alloc] initWithName:title subtitle:subtitle coordinate:loc];
[annotationArray addObject:placeObject];
NSLog(@" count: %lu", (unsigned long)[annotationArray count]); // always "0"
what did I wrong?