When presenting a WKInterfaceController, how can I change the color of the title used to dismiss the controller?

apple-watch, objective-c, watchkit

Solution

Yes, Global Tint is the answer.

- go to storyboard file

- select the interface controller desired to be colored

- click 'Utilities'

- click 'File Inspector'

- Find 'Global Tint', then use 'RGB sliders' under 2nd Tab of the Color pane

Problem

In my watch app, after presenting a controller with `presentControllerWithNames:contexts:`, is it possible to change the color of the title in the status bar? For example, in Apple's WatchKit Catalogue sample they have a controller they present modally with "Dismiss" set as the title. In storyboard, the title for this controller appears to have the global tint applied to it, but when running the app in the simulator, the color defaults to white. If possible, how can I make a presented WatchKit controller respect the global tint color? edit: Attaching a screenshot for clarity.

Original source