这是 BrowserViewController.m 的源代码:http: //pastebin.com/w282kRm6
如您所见,在许多不同的地方,我尝试使用 正确实现代码self.navigationController.navigationBar.tintColor = [UIColor darkGrayColor];
,但没有任何效果。
这是 BrowserViewController.m 的源代码:http: //pastebin.com/w282kRm6
如您所见,在许多不同的地方,我尝试使用 正确实现代码self.navigationController.navigationBar.tintColor = [UIColor darkGrayColor];
,但没有任何效果。
[navController.navigationBar setTintColor:[UIColor colorWithRed:0/255.0
green:51.0/255.0
blue:102.0/255.0
alpha:1.0]];
[navController.navigationBar setBarStyle:UIBarStyleBlackTranslucent];
你可以改变绿色,蓝色,红色。
self.navigationController.navigationBar.tintColor = [UIColor colorWithRed:0.56 green:0.69 blue:0.71 alpha:1.0];
这个对我有用。