Search code examples
apple-watch

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 ?


Solution

  • 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.