Re: [iOS] Sub Class MKPlacemark - Identifying each Placemark

2010-09-11 Thread Philip Vallone
Thanks, This is a good idea. When you created the AddressAnnotation instances, what did you use as the Key (headlineKey), which made them unique? Thanks, Phil On Sep 11, 2010, at 1:00 PM, banane wrote: > for(NSString *headlineKey in [eDict allKeys]){ > float theLat = [[latDic

Re: [iOS] Sub Class MKPlacemark - Identifying each Placemark

2010-09-11 Thread banane
I stored my coordinates lat/long in an NSMutableDictionary. I call them up upon load. Not sure if this helps- but I created something called "headlinekey" which is the key to the dictinoary and the short headline on the annotation. for(NSString *headlineKey in [eDict allKeys]){ flo

[iOS] Sub Class MKPlacemark - Identifying each Placemark

2010-09-11 Thread Philip Vallone
Hi, I am need of some advice. I have a MKMapView which allows users to add a bunch of MKPlacemark's that I've subclassed. How can I uniquely identify each placemark so I can store or retrieve information about that placemark? Thanks for help. Phil _