2

我想用这个方法。 https://developer.apple.com/reference/corelocation/clplacemark/2132103-placemarkwithlocation?language=objc#declarations

我导入CoreLocation了,但我仍然收到“没有已知的类方法”错误,而且我也没有看到它在CLPlacemark.h.

+ (instancetype)placemarkWithLocation:(CLLocation *)location 
                                 name:(NSString *)name 
                        postalAddress:(CNPostalAddress *)postalAddress;
4

1 回答 1

2

根据文档,

使用 Intents 框架构建的应用扩展可以使用此方法从现有位置和地址数据创建地标。例如,提供打车服务的应用可能会在解析用户的上车或下车位置时创建新地标。返回的地标仅包含您提供的数据。

所以需要导入 Intents 框架:

@import Intents;
于 2017-03-07T01:16:47.243 回答