iPhone/Objective-C - Change default "navigationItem.prompt" color -


is there way set self.navigationitem.prompt color white? @ moment it's black.

this how i'm setting navigationbar color @ moment:

// set top navigation bar. uinavigationbar *bar = [navcontroller navigationbar]; [bar settintcolor:[uicolor colorwithred:180.0/255.0 green:25.0/255.0 blue:34.0/255.0 alpha:1]]; uiimageview *navbar = [[uiimageview alloc] initwithframe:cgrectmake(0, 0, 320, 44)]; [navbar release]; 

..and how i'm setting navigationitem.prompt:

self.navigationitem.prompt = @"tap image more options."; 

swift:

        self.navigationcontroller?.navigationbar.titletextattributes =                  [nsforegroundcolorattributename : uicolor.white]         self.navigationcontroller?.navigationbar.bartintcolor = uicolor.red 

Comments