2017-03-18 214 views
0

我試圖自定義表格單元格分隔符顏色,但它沒有生效,爲什麼?Google Places API Swift

autocompleteController.tableCellSeparatorColor =的UIColor(紅色:CGFloat的(255/255.0),綠色:CGFloat的(255/255.0),藍色:CGFloat的(255/255.0),α:1.0)

對於參考:Google's Documentation

任何幫助非常讚賞

class selectAddress: UIViewController { 

    // Present the Autocomplete view controller when the button is pressed. 
    //@IBAction func autocompleteClicked(_ sender: UIButton) { 

    override func viewDidAppear(_ animated: Bool) { 



     let autocompleteController = GMSAutocompleteViewController() 
     autocompleteController.delegate = self 

     autocompleteController.tableCellBackgroundColor = UIColor(red: CGFloat(35/255.0), green: CGFloat(35/255.0), blue: CGFloat(43/255.0), alpha: 1.0) 

     autocompleteController.primaryTextColor = UIColor.gray 
     autocompleteController.tableCellSeparatorColor = UIColor(red: CGFloat(255/255.0), green: CGFloat(255/255.0), blue: CGFloat(255/255.0), alpha: 1.0) 
     autocompleteController.primaryTextHighlightColor = UIColor.white 
     autocompleteController.secondaryTextColor = UIColor.white 



    if opened == "NO" { 
     self.present(autocompleteController, animated: true, completion: nil) 
     opened = "YES" 
    }else{ 
     opened = "NO" 
     performSegue(withIdentifier: "venueSave", sender: self) 


     } 
    // } 
} 
} 

extension selectAddress: GMSAutocompleteViewControllerDelegate { 



    // Handle the user's selection. 
    func viewController(_ viewController: GMSAutocompleteViewController, didAutocompleteWith place: GMSPlace) { 
     print("Place name: \(place)") 
     print("Place address: \(place.formattedAddress)") 
     print("Place attributions: \(place.attributions)") 
     print("Longitude: \(place.coordinate.longitude)") 
     print("Latitude: \(place.coordinate.latitude)") 
     print("Address components: \(place.addressComponents)") 


     let city = place.addressComponents?[2].name 

     print("CITYYYY \(city!)") 

     /* 
     var request = URLRequest(url: URL(string: "https://www.asmserver.co.uk/barduo/addvenue.php")!) 
     request.httpMethod = "POST" 
     let postString = "name=\(facebookID!)&email=\(email!)&firstname=\(firstName!)&lastname=\(lastName!)&link=\(link!)" 
     print(postString) 
     request.httpBody = postString.data(using: .utf8) 
     let task = URLSession.shared.dataTask(with: request) { data, response, error in 
      guard let data = data, error == nil else {             // check for fundamental networking error 
       print("error=\(error)") 
       return 
      } 

      if let httpStatus = response as? HTTPURLResponse, httpStatus.statusCode != 200 {   // check for http errors 
       print("statusCode should be 200, but is \(httpStatus.statusCode)") 
       print("response = \(response)") 
      } 

      let responseString = String(data: data, encoding: .utf8) 

      print("*****\(responseString!)") 

      defaults.set("\(responseString!)", forKey: "id") 

      DispatchQueue.main.async { 
       self.performSegue(withIdentifier: "goNext", sender: self) 
      } 

     } 
     task.resume() 

*/ 

     dismiss(animated: true, completion: nil) 

    } 



    func viewController(_ viewController: GMSAutocompleteViewController, didFailAutocompleteWithError error: Error) { 
     // TODO: handle the error. 
     print("Error: ", error.localizedDescription) 
    } 

    // User canceled the operation. 
    func wasCancelled(_ viewController: GMSAutocompleteViewController) { 
     dismiss(animated: true, completion: nil) 
    } 

    // Turn the network activity indicator on and off again. 
    func didRequestAutocompletePredictions(_ viewController: GMSAutocompleteViewController) { 
     UIApplication.shared.isNetworkActivityIndicatorVisible = true 
    } 

    func didUpdateAutocompletePredictions(_ viewController: GMSAutocompleteViewController) { 
     UIApplication.shared.isNetworkActivityIndicatorVisible = false 
    } 

    func viewController(viewController: GMSAutocompleteViewController!, didFailAutocompleteWithError error: NSError!) { 
     // TODO: handle the error. 
     print("Error: ", error.description) 
    } 

} 

回答

1

我改了行的曲estion到:

GMSAutocompleteViewController()tableCellSeparatorColor = UIColor.white

和白分離器現在顯示。