如何使用Contacts Framework
打开包含一些预填充数据的原生联系表单。
答案 0 :(得分:0)
添加ContactsUI框架。像你这样在你的viewcontroller中导入它
import ContactsUI
从相应的viewcontroller添加并调用以下方法。
func addExistingContact() {
if #available(iOS 9.0, *) {
let contactPicker = CNContactPickerViewController()
contactPicker.delegate = self
self.presentViewController(contactPicker, animated: true, completion: nil)
} else {
// Fallback on earlier versions
}
}