Change tintcolor of SFSafariViewController?

前端 未结 3 913
伪装坚强ぢ
伪装坚强ぢ 2021-02-18 18:01

As the title says; how does one change the overall tint color of the new, in iOS 9, SFSafariViewController?

3条回答
  •  深忆病人
    2021-02-18 18:24

    Some news from iOS 10: now we have two properties to control the overall looks of the SFSafariViewController

    source: link

    The only downside is, of course, it's not available for older versions.

    if #available(iOS 10.0, *) {
        safariVC.preferredBarTintColor = .black
        safariVC.preferredControlTintColor = .white
    } else {
        safariVC.view.tintColor = .someColor
    }
    

提交回复
热议问题