我们的应用程序具有深色导航栏背景色调和白色色调。这些是由UIAppearance API设置的。当我们调用此代码添加联系人时,它使用该白色作为后退按钮。我们如何为操作系统处理的视图设置此颜色?它使用默认的色调颜色,但我们希望尽可能多地覆盖它,因为白色的白色不可见。
let ucvc = CNContactViewController(forUnknownContact: contact)
ucvc.delegate = self
ucvc.allowsEditing = true
ucvc.allowsActions = true
ucvc.alternateName = name()
ucvc.contactStore = CNContactStore()
self.navigationController?.pushViewController(ucvc, animated: true)