gpt4 book ai didi

ios - 更改 Safari View Controller 完成按钮色调?

转载 作者:可可西里 更新时间:2023-11-01 02:18:40 25 4
gpt4 key购买 nike

我可以更改底部 UI 栏:

UIBarButtonItem.appearance().tintColor = UIColor.redColor()

无法找到如何使用右上角的“完成”按钮执行相同的操作。

这是在 AppDelegate.swift 中工作的地方:

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
// Override point for customization after application launch.
UIBarButtonItem.appearance().tintColor = UIColor.redColor()

return true
}

添加这个不起作用:

UINavigationBar.appearance().tintColor = UIColor.redColor()

最佳答案

要更改“完成”按钮的颜色以及底部 UI 栏,您必须设置 SFSafariViewController View 的 tintColor 属性

例子:

let webVC = SFSafariViewController(URL: yourURL)
webVC.view.tintColor = UIColor.redColor()

关于ios - 更改 Safari View Controller 完成按钮色调?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33599742/

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