I've been developing a watchOS 2 complication for my app. It's looking great... asides from one last thing I'd like to tweak.
Complication templates seem to provide text alignment that isn't quite what I want. For the purpose of this question, let's go with the following code:
let template = CLKComplicationTemplateModularSmallStackText()
template.line1TextProvider = CLKSimpleTextProvider(text: "Hi")
template.line2TextProvider = CLKSimpleTextProvider(text: "Bye")
Now, looking at the complication, the first line is centre aligned, while the second line is left aligned. Not a massive deal I know, but I'd really like both lines to be centre aligned... it would make my complication look much better!
I've been looking through the API docs and searched the web, and I can't see a way to do this (or anyone else that's tried to do the same thing).
Questions:
- Has anyone else run into the same issue?
- Is there something in the API that I've missed that lets you do this?
- If not, is there any slightly more hacky/obtuse way of achieving what I'd like?