MKAnnotation 未声明

发布于 2024-11-17 08:29:29 字数 892 浏览 1 评论 0原文

我知道之前有人问过这个问题。然而,我认为有点菜鸟,因为我无法解决它。

我在尝试此操作时遇到该错误:

MKAnnotation *annotation = [[MKAnnotation alloc] initWithCoordinate:coordenada title:@"HELLO!"];
[mapa addAnnotation:annotation];

我也有以下方法:

- (MKAnnotationView *) mapView: (MKMapView *) mapView viewForAnnotation: (id<MKAnnotation>) annotation
{
    MKPinAnnotationView *pin = (MKPinAnnotationView *) [self.mapa dequeueReusableAnnotationViewWithIdentifier: @"asdf"];
    if (pin == nil)
    {
        pin = [[[MKPinAnnotationView alloc] initWithAnnotation: annotation reuseIdentifier: @"asdf"] autorelease];
    }
    else
    {
        pin.annotation = annotation;
    }
    pin.pinColor = MKPinAnnotationColorRed;
    pin.animatesDrop = YES;
    return pin;
}

并且执行了 #import <标头中的 MapKit/MKAnnotation.h>

有什么帮助吗?

非常感谢!

I know there was a question about this before. However, I think a little bit noob because I can't get it solved.

I'm getting that error when trying this:

MKAnnotation *annotation = [[MKAnnotation alloc] initWithCoordinate:coordenada title:@"HELLO!"];
[mapa addAnnotation:annotation];

I also have the following method:

- (MKAnnotationView *) mapView: (MKMapView *) mapView viewForAnnotation: (id<MKAnnotation>) annotation
{
    MKPinAnnotationView *pin = (MKPinAnnotationView *) [self.mapa dequeueReusableAnnotationViewWithIdentifier: @"asdf"];
    if (pin == nil)
    {
        pin = [[[MKPinAnnotationView alloc] initWithAnnotation: annotation reuseIdentifier: @"asdf"] autorelease];
    }
    else
    {
        pin.annotation = annotation;
    }
    pin.pinColor = MKPinAnnotationColorRed;
    pin.animatesDrop = YES;
    return pin;
}

And did the #import < MapKit/MKAnnotation.h> in header.

Any help please?

Thank you very much!

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

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

发布评论

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

评论(1

没有心的人 2024-11-24 08:29:30

MKAnnotation 是一个协议,而不是一个可以实例化的类。

您是否定义了自己的实现 MKAnnotationinitWithCooperative:title: 方法的类?如果有,请使用该类名并导入其头文件。

如果您还没有创建自己的注释类,则必须创建一个,或者可以使用预定义的 MKPointAnnotation 类(在 iOS 4+ 中):

MKPointAnnotation *annotation = [[MKPointAnnotation alloc] init];
annotation.coordinate = coordenada;
annotation.title = @"HELLO!";
[mapa addAnnotation:annotation];
[annotation release];

您还需要执行 以下操作:以下内容:

  • 将 MapKit 框架添加到项目中
  • 在文件顶部添加 #import
  • 设置 delegate 属性(或 IB 中的outlet) )否则地图视图viewForAnnotation 不会被调用

MKAnnotation is a protocol, not a class that you can instantiate.

Have you defined your own class that implements MKAnnotation and a initWithCoordinate:title: method? If you have, use that class name and import its header file.

If you haven't created your own annotation class, you'll have to create one or you can use the pre-defined MKPointAnnotation class (in iOS 4+) instead:

MKPointAnnotation *annotation = [[MKPointAnnotation alloc] init];
annotation.coordinate = coordenada;
annotation.title = @"HELLO!";
[mapa addAnnotation:annotation];
[annotation release];

You'll also need to do the following:

  • add the MapKit framework to the project
  • add #import <MapKit/MapKit.h> at the top of the file
  • set the delegate property (or outlet in IB) of the map view otherwise viewForAnnotation won't get called
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文