Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I set the nav title's tint color for a modal interface in WatchKit?

Tags:

ios

watchkit

In WatchKit, I know that I can set the "Global Tint" value in my storyboard file to adjust the navigation title's text color in my interface controllers.

However, whenever I present a modal interface controller in my application, I'm noticing that the InterfaceController's title shows up as white, not the global tint color.

Here's my tint color setting on the storyboard file:

enter image description here

Here's an example of the issue I'm finding:

no tint on modal nav

How can I get the title of a modal to use the global tint color?

like image 682
bryanjclark Avatar asked Feb 06 '15 17:02

bryanjclark


1 Answers

With the current SDK, you are not able to change the title color of Modal screens. The title will always be white.

The global tint color does not apply to Interface Controllers presented modally.

like image 65
Vojce kushevski Avatar answered Sep 21 '22 07:09

Vojce kushevski