2017-03-18 24 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

に感謝私はQUにラインを変更しましたestionへ:

GMSAutocompleteViewController()tableCellSeparatorColor = UIColor.white

、白色セパレータは、現在表示されます。

関連する問題