iOS 11 UISearchBar in UINavigationBar

后端 未结 7 1040
有刺的猬
有刺的猬 2020-12-04 17:15

I want to place a search bar in the new navigation bar with the new iOS 11 large titles. However, the color of the search bar is automatically applied by iOS and I can\'t ch

7条回答
  •  心在旅途
    2020-12-04 17:34

    I changed the background of the text field with this code inside AppDelegate.

    Swift 4

    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
            
            //background color of text field
             UITextField.appearance(whenContainedInInstancesOf: [UISearchBar.self]).backgroundColor = .cyan
            
            }
    

    This is the result

提交回复
热议问题