我正在使用SFSafariViewController
访问从UITableViewController
调用的网站。因为我的应用程序附带了非常轻松的感觉,所以我在AppDelegate
添加了以下代码行:
self.window.tintColor = [UIColor whiteColor];
运行SFSafariViewController
时,我得到以下内容:
无论如何,我可以将Done
按钮的颜色更改为蓝色(默认情况下)吗?
我在调用SFSafariViewController
时尝试了以下操作,但没有效果:
[self presentViewController:safariVC animated:YES completion:^{
safariVC.navigationController.navigationItem.rightBarButtonItem.tintColor = [UIColor blueColor];
[self presentViewController:safariVC animated:YES completion:^{
safariVC.navigationController.navigationBar.tintColor = [UIColor blueColor];
}];
这些都不奏效。
我当然可以将应用程序保留为默认设置,并从AppDelegate
中取出白色设置,但我想在应用程序中使用此方法,因为Blue在自定义主题中显得过于突出。
对此的任何指导都将非常感激。
答案 0 :(得分:4)
您可以使用appearance
代理全局更改条形颜色:
尝试
[[UINavigationBar appearance] setTintColor:[UIColor blueColor]];
[[UIBarButtonItem appearance] setTintColor:[UIColor blueColor]];
其他尝试
[self presentViewController:safariVC animated:YES completion:^{
[safariVC.navigationBar setTintColor:[UIColor blueColor]];
}];
其他尝试
在AppDelegate.m中的函数:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
我输入了以下代码:
//SFSafariViewController
[[UINavigationBar appearanceWhenContainedIn:[SFSafariViewController class], nil] setBarTintColor:[UIColor blueColor]];
[[UINavigationBar appearanceWhenContainedIn:[SFSafariViewController class], nil] setTintColor:[UIColor blueColor]];
或添加ViewDidLoad
[self.navigationController.navigationBar setTintColor:[UIColor whiteColor]];
<强>夫特强>
UINavigationBar.appearance().tintColor = UIColor.blueColor()
UIBarButtonItem.appearance().tintColor = UIColor.blueColor()
否则试试这个
self.presentViewController(safariVC, animated: true, completion: {() -> Void in
safariVC.navigationBar.tintColor = UIColor.blueColor()
})
或者喜欢
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject : AnyObject]?) -> Bool {
UINavigationBar.appearanceWhenContainedIn(SFSafariViewController.self, nil).barTintColor = UIColor.blueColor()
UINavigationBar.appearanceWhenContainedIn(SFSafariViewController.self, nil).tintColor = UIColor.blueColor()
}
或者最后试试这个
self.navigationController.navigationBar.tintColor = UIColor.whiteColor()
答案 1 :(得分:3)
尝试 setPreferredControlTintColor 设置完成按钮的色调