找不到协议声明 MKAnnotation

发布于 2024-10-22 02:48:18 字数 595 浏览 3 评论 0原文

代码是:

@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

这是我遇到的错误的快照:

https://skitch.com/kuntul/rws3c/smartrek -routemapannotation.h

有什么问题吗?我已经在同一个项目上完成了这个并且它有效..

The code is:

@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's a snapshot of the error I have:

https://skitch.com/kuntul/rws3c/smartrek-routemapannotation.h

What is wrong? I've done this on the same exact project and it works..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

随波逐流 2024-10-29 02:48:18

您还记得#import吗?

Did you remember to #import <MapKit/MapKit.h>?

如此安好 2024-10-29 02:48:18

您导入了 MKAnnotation.h 吗?

have you imported MKAnnotation.h ?

焚却相思 2024-10-29 02:48:18

您忘记了#import

确实没有其他原因会出现这种情况。

You forgot to #import <MapKit/MapKit.h>.

There really is no other reason why this would come up.

优雅的叶子 2024-10-29 02:48:18

只需插入一行

#import < MapKit/MapKit.h>

Just insert One line

#import < MapKit/MapKit.h>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文