Abhishek Bedi
Abhishek Bedi

Reputation: 5441

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

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 ?

Upvotes: 4

Views: 2697

Answers (1)

Vojce kushevski
Vojce kushevski

Reputation: 593

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.

Upvotes: 11

Related Questions