The code:
@interface RouteMapAnnotation : NSObject <MKAnnotation> { CLLocationCoordinate2D coordinate; NSString* title; NSString* subtitle; } @property (nonatomic, readonly) CLLocationCoordinate2D coordinate; @property (nonatomic, copy) NSString* title; @property (nonatomic, copy) NSString* subtitle; @end
Here is a snapshot of the error that I have:
https://skitch.com/kuntul/rws3c/smartrek-routemapannotation.h
What's wrong? I did this on the exact same project, and it works.
objective-c iphone mkannotation
aherlambang
source share