CNContactViewController-更改取消和完成按钮的颜色

时间:2019-11-19 08:06:02

标签: ios swift xcode cncontactviewcontroller

当我打开CNContactViewController时,它将打开没有取消和完成按钮的视图。 仅在iOS13及更高版本中会发生此问题。    enter image description here

如何更改条形按钮的颜色?

我尝试了此链接,但是它不起作用

Change color of cancel and done button in CNContactPicker

let controller = CNContactViewController(forNewContact: nil)
controller.delegate = self
navigationController?.pushViewController(controller, animated: true)

1 个答案:

答案 0 :(得分:0)

我检查了链接是否正常

将代码更改为

 navigationController?.pushViewController(controller, animated: true)

与此

 self.present(UINavigationController(rootViewController: controller), animated:true)