Change the font size of UISearchBar

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

How can I change the font size of UISearchBar ?

19条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-04 16:08

    For Swift 4.2+

    let defaultTextAttributes = [
        NSAttributedString.Key.font: UIFont.init(name: "Ubuntu-Regular", size: 16),
        NSAttributedString.Key.foregroundColor: UIColor.gray
    ]
    UITextField.appearance(whenContainedInInstancesOf: [UISearchBar.self]).defaultTextAttributes = defaultTextAttributes
    

提交回复
热议问题