godman
godman

Reputation: 61

Navigation Bar bar appearance

how do you change you navbar placeholder text color? also is there a light blue color for these messages?

[[UINavigationBar appearance] setBackgroundImage:[[UIImage alloc] init]     forBarMetrics:UIBarMetricsDefault];
[[UINavigationBar appearance] setBackgroundColor:[UIColor redColor]];

Upvotes: 0

Views: 57

Answers (1)

satishiOS25
satishiOS25

Reputation: 531

Think this will work.

- (void)viewDidLoad
{

 [super viewDidLoad];

//I am using UIColor BlueColor for an example but you can use whatever color you like

  self.navigationController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName: [UIColor blueColor]};

//change the title here to whatever you like
   self.title = @"Home";

}

Upvotes: 2

Related Questions