我正在尝试更改UIDocumentInteractionController提供的视图的默认标题颜色?默认颜色为黑色,唯一可用的属性是标题。
答案 0 :(得分:0)
迅速
func documentInteractionControllerViewControllerForPreview(_ controller: UIDocumentInteractionController) -> UIViewController
{
navigationController?.navigationBar.titleTextAttributes = [NSAttributedStringKey.foregroundColor:UIColor.white]
return self.navigationController ?? self
}