如何在弹出窗口中更改导航栏项的色调



我使用自定义popoverBackgroundViewClass将弹出窗口着色为深灰色。

https://github.com/Scianski/KSCustomUIPopover

popover.popoverBackgroundViewClass = [KSCustomPopoverBackgroundView class];

的工作很棒,但我如何改变一个弹出窗口的导航项的色调?弹出窗口导航栏中的"后退"按钮仍然是标准的蓝色。

你指定的contentViewController显然是UINavigationController,对吧?它有一个rootViewController。所以像下面这样的内容来自rootViewController:

self.navigationController.navigationBar.tintColor = [UIColor redColor];

…应该的

相关内容

  • 没有找到相关文章

最新更新