Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change apple watch interface controller title size/text?

Tags:

apple-watch

How to change apple watch interface controller title size/text ? Can we provide custom fonts ? Tries with setting title programmatically using NSAttributedText but no success. Any ideas ?

like image 869
Abhishek Bedi Avatar asked Dec 19 '22 07:12

Abhishek Bedi


1 Answers

You can change the interface controller's title by calling:
swift : func setTitle(_ title: String?)
objc: - (void)setTitle:(NSString *)title

For now we can't change the title text size or use a custom font for the title.

like image 179
Vojce kushevski Avatar answered May 08 '23 00:05

Vojce kushevski