1

我尝试过 GMSPlacesClient,但无法以正确的格式获得结果以将它们填充到 tableView 中。

之后我使用了 Fetcher,但我没有帮助我。

extension SearchViewController: GMSAutocompleteFetcherDelegate {
func didAutocomplete(with predictions: [GMSAutocompletePrediction]) {
    let resultsStr = NSMutableString()
    for prediction in predictions {
        resultsStr.appendFormat("%@\n", prediction.attributedPrimaryText)
    }

     print(resultsStr as String)
}

func didFailAutocompleteWithError(_ error: Error) {
    print(error.localizedDescription)
}

}

我不知道我是否不明白它的用法。有人可能会描述我如何使用 Google Places Api 在 textBox 中搜索地址,然后在 tableView 中显示结果。

我的问题是只得到搜索结果?


获取零件代码:

var fetcher: GMSAutocompleteFetcher?

func placeAutocomplete(add:String) {
    fetcher?.sourceTextHasChanged(add)
}

override func viewDidLoad() {
    super.viewDidLoad()
    tblView.delegate = self
    tblView.dataSource = self


    let filter = GMSAutocompleteFilter()
    filter.type = .establishment

    // Create the fetcher.
    fetcher = GMSAutocompleteFetcher(bounds: nil, filter: filter)
    fetcher?.delegate = self
}

搜索“墨西哥”的结果

> Me{
GMSAutocompleteMatch = "<GMSAutocompleteMatchFragment: 0x60800043db60>";
}rcado de La Boqueria, La Rambla, Barcelona, Spain{
}*
Me{
  GMSAutocompleteMatch = "<GMSAutocompleteMatchFragment: 
   0x60800043db60>";
}rcado San Anton, Calle de Augusto Figueroa, Madrid, Spain{
}*
     Me{
 GMSAutocompleteMatch = "<GMSAutocompleteMatchFragment: 0x60800043db60>";
 }nlyn Mall, Atterbury Road, Pretoria, South Africa{
}*
    Me{
   GMSAutocompleteMatch = "<GMSAutocompleteMatchFragment: 
  0x60800043db60>";
}ga Mall, Bulevardul Pierre de Coubertin, Bucharest, Romania{
    }*
      Me{
  GMSAutocompleteMatch = "<GMSAutocompleteMatchFragment: 
    0x60800043db60>";
    }rcado de San Ildefonso, Calle de Fuencarral, Madrid, Spain{
  }* 

打印代码:

for q in predictions1
{
   print ( "\(q.attributedFullText)*")
}
4

2 回答 2

1

您需要使用GMSAutocompleteFilter过滤器进行调整以获得所需的结果。目前您正在使用过滤器类型过滤结果:.establishment过滤/限制搜索结果。您可以考虑使用.noFilter或任何其他过滤器。

let filter = GMSAutocompleteFilter()
filter.type = .noFilter

参考enum GMSPlacesAutocompleteTypeFilter,来源:GMSAutocompleteFilter.h

public enum GMSPlacesAutocompleteTypeFilter : Int {


    /**
     * All results.
     */
    case noFilter

    /**
     * Geeocoding results, as opposed to business results.
     */
    case geocode

    /**
     * Geocoding results with a precise address.
     */
    case address

    /**
     * Business results.
     */
    case establishment

    /**
     * Results that match the following types:
     * "locality",
     * "sublocality"
     * "postal_code",
     * "country",
     * "administrative_area_level_1",
     * "administrative_area_level_2"
     */
    case region

    /**
     * Results that match the following types:
     * "locality",
     * "administrative_area_level_3"
     */
    case city
}
于 2017-09-28T09:39:04.387 回答
1

你应该使用数组而不是 let resultsStr = NSMutableString()

并使用数据源作为数组填充表视图

于 2017-09-28T08:33:43.557 回答