Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用自定义 popoverBackgroundViewClass 将弹出框着色为深灰色。
https://github.com/Scianski/KSCustomUIPopover
popover.popoverBackgroundViewClass = [KSCustomPopoverBackgroundView class];
效果很好,但是如何更改弹出框的导航项的色调?弹出框导航栏中的“返回”按钮仍然是标准的蓝色。
您指定的 contentViewController 显然是 UINavigationController 对吧?其中有一个 rootViewController。因此,来自 rootViewController 的内容类似于以下内容:
self.navigationController.navigationBar.tintColor = [UIColor redColor];
……应该这样做。