gpt4 book ai didi

iphone - 如何自定义QLPreviewController的navBar和toolbar tintColor

转载 作者:可可西里 更新时间:2023-11-01 06:18:48 26 4
gpt4 key购买 nike

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]];

Problem Screenshot here

最佳答案

从 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的navBar和toolbar tintColor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13492447/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com