如标题所示,在 iOS7 中,如何在 UIPopoverController 中更改导航栏背景/颜色?
我正在使用以下方式,但不起作用
UINavigationController * navController = [[UINavigationController alloc] initWithRootViewController:packListViewController];
[navController.navigationBar setBarTintColor:[UIColor blackColor]];
if (_packListPickerPopover == nil) {
_packListPickerPopover = [[UIPopoverController alloc] initWithContentViewController:navController];
_packListPickerPopover.popoverContentSize = CGSizeMake(950, 345);
}
非常感谢