当我打开CNContactViewController时,它会打开视图,而不需要取消和完成按钮。此问题仅在iOS13及更高版本中发生。

如何更改条形按钮的颜色?
我试过这个链接,但它不起作用
Change color of cancel and done button in CNContactPicker
let controller = CNContactViewController(forNewContact: nil)
controller.delegate = self
navigationController?.pushViewController(controller, animated: true)发布于 2019-11-19 11:51:39
我查过链接是否正常
将代码更改为
navigationController?.pushViewController(controller, animated: true)与此
self.present(UINavigationController(rootViewController: controller), animated:true)https://stackoverflow.com/questions/58929240
复制相似问题