我有一个模态视图控制器,我希望它的导航栏(我认为UINavigationItem)继承其呈现视图控制器的导航栏的颜色。我该怎么做?
答案 0 :(得分:1)
在呈现模态视图控制器之前设置它。例如:
viewController.navigationController.navigationBar.tintColor = self.navigationController.navigationBar.tintColor;
[self presentModalViewController:viewController animated:YES];