Hi All,
I was trying to reduce the tvOS searchBar font size but no luck.
if #available(tvOS 14.0, *) {
UILabel.appearance(whenContainedInInstancesOf: [UISearchBar.self]).font = UIFont.boldSystemFont(ofSize: 38.0)
UITextField.appearance(whenContainedInInstancesOf: [UISearchBar.self]).font = UIFont.boldSystemFont(ofSize: 38.0)
}
Is it possible to change the text tvOS searchbar font size?
Post
Replies
Boosts
Views
Activity
Hi ,
I am working on tvOS application for a Japanese client. All the text are Japanese in app based on localization. But I observed that the Japanese keyboard in search bar is changed to English when user click "Globe" icon in searchbar keyboard. Can we restrict the language to Japanese language if user click the globe icon in search bar?