【问题标题】:Is there any way to change the title colour of UIDocumentInteractionController? [duplicate]有什么办法可以改变 UIDocumentInteractionController 的标题颜色吗? [复制]
【发布时间】:2017-01-10 03:18:41
【问题描述】:

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

【问题讨论】:

标签: ios objective-c uidocumentinteraction


【解决方案1】:

迅速

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

【讨论】:

  • 虽然此代码可能会解决问题,including an explanation 关于如何以及为什么解决问题将真正有助于提高您的帖子质量,并可能导致更多的赞成票。请记住,您正在为将来的读者回答问题,而不仅仅是现在提问的人。请edit您的回答添加解释并说明适用的限制和假设。
猜你喜欢
  • 2020-02-27
  • 2011-02-12
  • 2021-10-18
  • 2016-03-28
  • 2020-01-10
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多