在Swift 3中单击textField时,在tableView上搜索Google Places?

anu*_*nuj 2 google-places swift3

Google Places当我点击textField并希望在下面显示结果时如何搜索textField.我正在使用Swift 3.0版本.有人可以帮助我

Wid*_*ogy 9

首先,您需要在项目中安装GooglePlaces SDK.然后你可以参考下面的代码.

在Swift 3中

在AppDelegate中

import UIKit
import CoreData
import GoogleMaps
import GooglePlacePicker

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

var window: UIWindow?

func application(_ application: UIApplication, didFinishLaunchingWithOptions 
launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
    func setUpGoogleMaps()
    return true
}

func setUpGoogleMaps() {
    let googleMapsApiKey = "AIzaSyA-kiOBvrR9CNztqutwmKaSLyXIid93K0E"
    GMSServices.provideAPIKey(googleMapsApiKey)
    GMSPlacesClient.provideAPIKey("AIzaSyA-kiOBvrR9CNztqutwmKaSLyXIid93K0E")
}
Run Code Online (Sandbox Code Playgroud)

在具有textField的ViewController中

import UIKit
import GooglePlaces
import GoogleMaps
import GooglePlacePicker

class HotelVC: UIViewController, GMSMapViewDelegate, UITextFieldDelegate {

@IBOutlet weak var YourTextField: UITextField!

override func viewDidLoad() {
    super.viewDidLoad()
    self.YourTextField.delegate = self

}

func textFieldDidBeginEditing(_ textField: UITextField) {
    let acController = GMSAutocompleteViewController()
    acController.delegate = self
    self.present(acController, animated: true, completion: nil)
  }
}


extension viewController: GMSAutocompleteViewControllerDelegate {

func viewController(_ viewController: GMSAutocompleteViewController, didAutocompleteWith place: GMSPlace) {

    print("Place name: \(place.name)")
    print("Place address: \(place.formattedAddress ?? "null")")
    self.YourTextField.text = place.formattedAddress
    print("Place attributions: \(String(describing: place.attributions))")

    self.dismiss(animated: true, completion: nil)
}
func viewController(_ viewController: GMSAutocompleteViewController, didFailAutocompleteWithError error: Error) {
    // TODO: handle the error.
    //        print("Error: \(error.description)")
    self.dismiss(animated: true, completion: nil)
}

// User canceled the operation.
func wasCancelled(_ viewController: GMSAutocompleteViewController) {
    print("Autocomplete was cancelled.")
    self.dismiss(animated: true, completion: nil)
    }
}
Run Code Online (Sandbox Code Playgroud)