Change the font size of UISearchBar

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

How can I change the font size of UISearchBar ?

19条回答
  •  醉话见心
    2020-12-04 15:55

    iOS 13 or later:

    if #available(iOS 13.0, *) {
        // set your desired font size
        self.searchBar.searchTextField.font = .systemFont(ofSize: 14.0) 
    }
    

提交回复
热议问题