2014-11-09 8 views
0

어떻게 navbar 자리 표시 자 텍스트 색을 변경합니까? 또한 이러한 메시지에 밝은 파란색 색상이 있습니까?탐색 모음 막대 모양

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

가능한 중복 [아이폰 탐색 모음 제목 텍스트 색상] (http://stackoverflow.com/questions/599405/iphone-navigation-bar-title-text-color) –

답변

2

이렇게하면 효과가 있다고 생각됩니다.

- (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"; 

}