2017-12-06 18 views
1

Swift4의 GooglePlacePicker에서 NavigationController를 맞춤 설정하려고했지만 원하는대로 작동하지 않습니다.Swift4의 GooglePlacePicker에서 탐색 바를 사용자 정의하는 방법은 무엇입니까?

누군가 Swift4에서 placePicker의 탐색 UI를 변경하는 방법을 알고 있습니까? 이것을 읽어 주셔서 감사합니다.

@IBAction func pickPlaceBtn(_ sender: Any) { 

    let config:GMSPlacePickerConfig = GMSPlacePickerConfig(viewport: nil) 
    print(config.viewport) 
    let placePicker:GMSPlacePickerViewController = GMSPlacePickerViewController(config: config) 

    placePicker.delegate = self 
    present(placePicker, animated: true, completion: nil) 

    //Does not work. 
    placePicker.navigationController?.navigationBar.backgroundColor = UIColor.black 

} 
+0

이 링크 확인 https://developers.google.com/places/ios-api/autocomplete#use_the_uiappearance_protocol –

+0

의견을 남겨주셔서 감사합니다! 나는이 문제를 해결했다! –

답변

1

enter image description here

는 확실히 GMSPlacePickerViewController 탐색과 함께 탐색 모음의 모든 변경됩니다 모습 프록시를 사용하려면이

placePicker.navigationController?.navigationBar.barTintColor = UIColor.black 
placePicker.navigationController?.navigationBar.isTranslucent = false 
0

시도를하려고 bar.For 저를 이런 일을했습니다

UINavigationBar.appearance().barTintColor = UIColor.black 
UINavigationBar.appearance().isTranslucent = false