我正在尝试在 iOS7 中自定义导航控制器的导航栏,并且标题颜色没有改变。我正在执行以下操作:
[navigationController.navigationBar setBarTintColor:[UIColor colorWithRed:46.0f/256.0f green:46.0f/256.0f blue:46.0f/256.0f alpha:1]];
[navigationController.navigationBar setTranslucent:NO];
[navigationController.navigationBar setTitleTextAttributes:@{[UIColor whiteColor]:UITextAttributeTextColor}];
[self presentViewController:navigationController animated:YES completion:nil];
导航栏半透明被关闭并且它是黑暗的,但标题也保持黑暗。我还尝试创建一个自定义标签并将其设置为标题视图,但运气不佳。
如何更改标题颜色?