gpt4 book ai didi

ios - GMSAutocompletePrediction prediction.attributedFullText 不在 swift 3.0 中给出 nsmutablestring

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:11:10 25 4
gpt4 key购买 nike

我在我的 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/

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