微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

swift – UIDocumentPicker导航栏按钮隐藏在iOS 11中

我在iOS 11的UIDocumentPicker导航栏中发现问题,完成,取消或编辑按钮是不可见的,当用户触摸它时,即使更改UINavigationBar.appearnce(即使更改UINavigationBar.appearnce时),正常状态下的颜色也是白色. ).tintColor,颜色仅在触摸时改变.

enter image description here


enter image description here

解决方法

对UINavigationBar和UIBarButtonItem使用带有黑色外观的CustomDocumentPickerViewController

import UIKit

class CustomDocumentPickerViewController: UIDocumentPickerViewController {

    override func viewWillAppear(_ animated: Bool) {
        super.viewWillAppear(animated)

        UINavigationBar.appearance().tintColor = UIColor.black
        UIBarButtonItem.appearance().setTitleTextAttributes([NSForegroundColorAttributeName : UIColor.black],for: .normal)
    }

    override func viewWilldisappear(_ animated: Bool) {

        UINavigationBar.appearance().tintColor = UIColor.white // your color
        UIBarButtonItem.appearance().setTitleTextAttributes(nil,for: .normal)
        super.viewWilldisappear(animated)

    }

}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐