找不到Mapview的基类

时间:2013-12-04 15:21:40

标签: ios objective-c mapkit mkannotation

我试图以这种方式继承MKPinAnnotation:

MKPinAnnotationView - > MyPoint - > PhotoPoint

但我在Xcode中遇到错误,说没有基类就无法定义PhotoPoint。

这是我在MyPoint.h中的代码:

#import <MapKit/MKPinAnnotationView.h>
@interface MyPoint:NSObject<MKAnnotation>{...}

然后在PhotoPoint.h中:

@interface PhotoPoint:MyPoint

这就是我收到错误的地方......有没有人有任何想法?

1 个答案:

答案 0 :(得分:0)

在PhotoPoint.h中,您需要导入MyPoint.h。

#import "MyPoint.h"

@interface PhotoPoint : MyPoint