1

我正在使用自定义 popoverBackgroundViewClass 将弹出框着色为深灰色。

https://github.com/Scianski/KSCustomUIPopover

popover.popoverBackgroundViewClass = [KSCustomPopoverBackgroundView class];

效果很好,但是如何更改弹出框的导航项的色调?弹出框导航栏中的“返回”按钮仍然是标准的蓝色。

4

1 回答 1

0

您指定的 contentViewController 显然是 UINavigationController 对吧?其中有一个 rootViewController。因此,来自 rootViewController 的内容类似于以下内容:

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

……应该这样做。

于 2013-04-23T16:20:57.617 回答