我尝试了这样的事情:
var description:String = "Custom Text"
map.userLocation.description = description
或
var description:String = "Custom Text"
map.userLocation.description(description)
但两者都错了,我不知道该怎么做。此外,Apple 文档对这种描述方法并没有真正的帮助。
userLocation
属性没有description
属性。在此上下文中,您看到的description
方法是从 NSObject
继承的基本方法,用于记录对象。我相信你想要userLocation
的title
财产。