I am trying to inherit from MKPinAnnotation in this manner:
MKPinAnnotationView -->MyPoint-->PhotoPoint
but I get an error in Xcode saying PhotoPoint can't be defined without a base class.
Here is my code in MyPoint.h:
#import <MapKit/MKPinAnnotationView.h>
@interface MyPoint:NSObject<MKAnnotation>{...}
then in PhotoPoint.h:
@interface PhotoPoint:MyPoint
and this is where I get the error...does anyone have any ideas?