gpt4 book ai didi

iphone - 发送 'MapAnnotation *__strong' 到不兼容类型 'id' 的参数

转载 作者:行者123 更新时间:2023-12-03 18:27:50 26 4
gpt4 key购买 nike

我在下面提到的行中收到警告:

[self.mapView addAnnotation:addressAnnotation];

警告是:

Sending 'MapAnnotation *__strong' to parameter of incompatible type 'id<MKAnnotation>'

由于我引用了类似的帖子,所以我不得不提一下,该类的头文件包括 <MKAnnotation>以及 MapAnnotation 的前向声明类(class)也可用。

请提出建议。

最佳答案

要消除警告,您有两种选择:

  1. 在其 @interface 语句中声明 self 的类(无论该类是什么),以符合协议(protocol)。

  2. 通过更改以下内容来抑制警告:

    [self.mapView addAnnotation:addressAnnotation];

    对此:

    [self.mapView addAnnotation:(id)addressAnnotation];

关于iphone - 发送 'MapAnnotation *__strong' 到不兼容类型 'id<MKAnnotation>' 的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8431035/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com