HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – UIDocumentPickerViewController导航栏按钮颜色大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我的应用程序使用带有白色按钮和文本的红色导航栏(2)栏.当我使用系统联系人选择器(3)时,状态栏为红色.当我使用文件选择器(1)UIDocumentPickerViewController然后导航栏是白色的.如何更改导航栏或文本的颜色?

当我使用下面的代码时,它可以工作,但它也改变了我的导航栏.

UINavigationBar.appearance().TintColor = .red

感谢帮助

码:

func open() {
        UINavigationBar.appearance().barTintColor = .green
        let documentsController = UIDocumentPickerViewController(documentTypes: makeDocumentTypesList(),in: .import)
        documentsController.delegate = self
        viewControllerProvider.getViewController().present(documentsController,animated: true,completion: nil)
    }

@H_404_14@

解决方法

您只需将此代码放在应用程序中的某个位置即可重置UIDocumentPickerViewController的外观:didFinishLaunchingWithOptions:function并且条形按钮将返回其原始蓝色,或者您可以设置您选择的任何其他颜色.另一方面,条形颜色不可定制.
if #available(iOS 11.0,*) {
    UINavigationBar.appearance(whenContainedInInstancesOf: [UIDocumentBrowserviewController.self]).TintColor = nil
}
@H_404_14@ @H_404_14@
本图文内容来源于网友网络收集整理提供,作为学习参使用,版权属于原作者。

大佬总结

以上是大佬教程为你收集整理的ios – UIDocumentPickerViewController导航栏按钮颜色全部内容,希望文章能够帮你解决ios – UIDocumentPickerViewController导航栏按钮颜色所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。