Change the font size of UISearchBar

前端 未结 19 1376
情歌与酒
情歌与酒 2020-12-04 15:08

How can I change the font size of UISearchBar ?

19条回答
  •  感动是毒
    2020-12-04 15:58

    If you need a convenient way to change all your application searchbars, here's a simple subclass in Swift 5:

    class MySearchBar: UISearchBar {
        override func layoutSubviews() {
            super.layoutSubviews()
    
            if let textFieldInsideSearchBar = value(forKey: "searchField") as? UITextField {
                textFieldInsideSearchBar.font = UIFont(name: "Oswald-Light", size: 14)
            }
        }
    }
    

提交回复
热议问题