QLPreviewController * preview = [[QLPreviewController alloc] init];
preview.dataSource = self;
preview.currentPreviewItemIndex = sender.tag;
preview.editing= YES;
[self presentModalViewController:preview animated:YES];
[preview release];

这两行对我不起作用。所以在写这些行之前要小心。
[preview.tabBarController.tabBar setTintColor:[UIColor blackColor]];
[preview navigationController].navigationBar setTintColor: [UIColor blackColor]];

最佳答案

从 iOS5 开始,您可以基于实例、全局或特定容器类包含主题控件。自 iOS6 以来,子类化 QLPreviewController 以设置 UINavigationBar 的 tintColor 的前一种方法停止工作。

考虑以下之一作为与 iOS5 和 iOS6 兼容的解决方法的示例:

包含在 QLPreviewController 中的任何 UINavigationBar:

[[UINavigationBar appearanceWhenContainedIn:[QLPreviewController class], nil]
        setTintColor:[UIColor blackColor]];

或者使用以下命令全局设置应用程序中所有 UINavigationBar 实例的 tintColor:
 [[UINavigationBar appearance] setTintColor:[UIColor blackColor]];

同样的策略适用于 UITabBarController。

关于iphone - 如何自定义 QLPreviewController 的导航栏和工具栏 tintColor,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13492447/

10-12 03:23