使用
self.navigationController.navigationBar.tintColor = [UIColor whiteColor];
無效時可以試試下面這個
NSMutableDictionary *att = [NSMutableDictionary dictionary];
att[NSForegroundColorAttributeName] = [UIColor whiteColor];
[self.navigationController.navigationBar setTitleTextAttributes:att];