Reputation: 5441
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
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