I am making a complication, and want to display "UTC" timezone time using 24-hour format in the complication.
CLKTimeTextProvider will work, but it seems to only use the default format the user prefers, whereas I need to force it to always show 24-hour time.
Any thoughts? Is there a property I am not seeing?
switch family {
case .UtilitarianLarge:
let template = CLKComplicationTemplateUtilitarianLargeFlat()
template.imageProvider = nil
template.textProvider = CLKTimeTextProvider(date: NSDate(), timeZone: NSTimeZone(name: "UTC"))
return CLKComplicationTimelineEntry(date: date, complicationTemplate: template)