我解决了它。这里是为我工作完美的代码:
func documentInteractionControllerViewControllerForPreview(_ controller: UIDocumentInteractionController) -> UIViewController {
UINavigationBar.appearance().barTintColor = Colors.redColor()
UINavigationBar.appearance().tintColor = UIColor.white
UINavigationBar.appearance().titleTextAttributes = [NSForegroundColorAttributeName : UIColor.white, NSFontAttributeName: UIFont.systemFont(ofSize: 14, weight: UIFontWeightBold)]
return self
}
这是一个有点哈克为依托的事实,QLPreviewController是实施UIDocumentInteractionController类,但这样的事情是侵入性最小的解决方案。做到这一点,你显示UIDocumentInteractionController前
import QuickLook
UIBarButtonItem.appearance(whenContainedInInstancesOf [QLPreviewController.self]).tintColor = UIColor.black
我有一个IDEAR改变栏的颜色:
let allNavigationBar = UINavigationBar.appearance()
allNavigationBar.barTintColor = UIColor.red // change the bar background color
allNavigationBar.tintColor = UIColor.black // change the Done button's tintColor
let alloolbar = UIToolbar.appearance()
allToolbar.barTintColor = UIColor.red // dones't work, try backgroundImage
allToolbar.backgroundColor = UIColor.blue // dones't work
allToolbar.tintColor = UIColor.brown // change the toolbar's item tint color
但这种方法有很大的作用,所有的UINavigationBar
and UIToolBar
会做出的改变。
希望其他人能够给出一个更好的解决方案。
你可以暂时改变窗口的色调颜色。
func presentDocument() {
//present the controller here
self.appDelegate.window.tintColor = UIColor.red
}
然后换回来后:
func documentInteractionControllerDidEndPreview(documentInteractionController) { //replace parameter with your uidocumentviewinteractioncontroller
self.appDelegate.window.tintColor = UIColor.white
}
@Dee。我想你问这个部分在您的其他问题之一。在这种情况下,你无法证明预览控制器。在这个问题提出的答案是从委托方法返回的“自我”。如果您实现正确那么你预览将使用相同的导航栏的颜色作为其父控制器使用。我的意思是,如果你有一些视图控制器直接打开UIDocumentInteractionController然后UIDocumentInteractionController将利用其父的viewController的导航栏的颜色。这可以帮助你完成更改按钮颜色
试试这个:(您需要实现UIDocumentInteractionControllerDelegate)
func documentInteractionControllerViewControllerForPreview(_ controller: UIDocumentInteractionController) -> UIViewController {
return self.navigationController ?? self
}
let QLNavAppearance = UINavigationBar.appearance(whenContainedInInstancesOf: [QLPreviewController.self])
QLNavAppearance.tintColor = UIColor.red // some
QLNavAppearance.barTintColor = UIColor.red // some
QLNavAppearance.backgroundColor = UIColor.red // some