1
私は迅速なプロジェクトでGMSAutocompleteFetcherを使用して場所を検索します。ここで私ポッドで「GooglePlaces''GooglePlacePicker」「Googleマップ」をインストールして、リンク https://developers.google.com/places/ios-api/autocomplete#use_the_fetcher のようにすべてのものを書きますがtextFieldDidChangeでの書き込みの後に私は、デリゲートメソッドでは、それに応じて結果を得た:GMSAutocompletePrediction prediction.attributedFullTextはswift 3.0でnsmutablestringを与えません
func didAutocomplete(with predictions: [GMSAutocompletePrediction]) {
let resultsStr = NSMutableString()
for prediction in predictions {
resultsStr.appendFormat("%@\n", prediction.attributedFullText)
}
が、resultsStr GOTで値:
Ca{
GMSAutocompleteMatch = "<GMSAutocompleteMatchFragment: 0x608000223940>";
}lifornia{
}
それは...
解決策を見つけたら、私の答えを確認してから、upvoteして受け入れてください –