我想将DocumentPicker的导航栏背景颜色设置为与我的应用程序的其余部分相同。
let filePicker = UIDocumentPickerViewController(documentTypes: ["public.content"], in: .import)
filePicker.delegate = self
filePicker.navigationController?.navigationBar.barTintColor = self.theme.navigationBarColor
self.present(filePicker, animated: true, completion: nil)
不起作用。
我尝试过的其他事情:
使用UINavigationBar.appearance().backgroundColor = self.theme.navigationBarColor
- 不起作用,看起来太像是一种解决方法,而不是一种正确的方法。
编辑: 现在我们的应用程序经过重新设计,使用主要颜色作为导航栏文本颜色,并具有与DocumentPicker相同的背景颜色。答案仍然会受到赞赏。
答案 0 :(得分:2)
这将改变文本的颜色,如“取消”。
UIBarButtonItem.appearance().setTitleTextAttributes([NSForegroundColorAttributeName:UIColor.blue], for: .normal)
这将改变箭头颜色。
UIButton.appearance().tintColor = UIColor.blue
如果需要,请关闭拾取器后,不要忘记将其恢复为原始颜色。