有没有办法更改UIDocumentInteractionController的标题颜色?

时间:2016-09-02 05:45:31

标签: ios objective-c uidocumentinteraction

我正在尝试更改UIDocumentInteractionController提供的视图的默认标题颜色?默认颜色为黑色,唯一可用的属性是标题。

1 个答案:

答案 0 :(得分:0)

迅速

func documentInteractionControllerViewControllerForPreview(_ controller: UIDocumentInteractionController) -> UIViewController 
{
        navigationController?.navigationBar.titleTextAttributes = [NSAttributedStringKey.foregroundColor:UIColor.white]  
        return self.navigationController ?? self
    }