我正在尝试使用 Intents 框架创建自定义 CLPlacemark。我在文件开头导入“意图”。
我找到了这个解决方案:
let waypointLocation = CLLocation(latitude: 50.00, longitude: 8.00)
let waypointName = "Some Name"
let w1 = CLPlacemark.init(location: waypointLocation,
name: waypointName,
postalAddress: nil)
不幸的是,上面的代码给了我以下错误信息:
对成员 'init(placemark:)' 的模糊引用
有什么想法有什么问题吗?
文档: