作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我在我的 swift 项目中使用 GMSAutocompleteFetcher 来搜索地点。在这里,我安装带有 pod 的“GooglePlaces”“GooglePlacePicker”“GoogleMaps”,并按照链接中的方式编写所有内容 https://developers.google.com/places/ios-api/autocomplete#use_the_fetcher 但是在写完 textFieldDidChange 之后,我在委托(delegate)方法中根据它得到了结果:
func didAutocomplete(with predictions: [GMSAutocompletePrediction]) {
let resultsStr = NSMutableString()
for prediction in predictions {
resultsStr.appendFormat("%@\n", prediction.attributedFullText)
}
但在 resultsStr 中获得了值(value):
Ca{
GMSAutocompleteMatch = "<GMSAutocompleteMatchFragment: 0x608000223940>";
}lifornia{
}
应该是“加州”
最佳答案
Swift 3.0 代码..
你的 prediction.attributedFullText
属性文本首先在 string
中转换,然后你得到字符串类型的结果。
func didAutocomplete(with predictions: [GMSAutocompletePrediction]) {
let resultsStr = NSMutableString()
for prediction in predictions {
resultsStr.appendFormat("%@\n", prediction.attributedPrimaryText.string)
}
print(resultsStr) //California
}
关于ios - GMSAutocompletePrediction prediction.attributedFullText 不在 swift 3.0 中给出 nsmutablestring,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45476693/
我在我的 swift 项目中使用 GMSAutocompleteFetcher 来搜索地点。在这里,我安装带有 pod 的“GooglePlaces”“GooglePlacePicker”“Googl
我是一名优秀的程序员,十分优秀!