-3

如何使用Contacts Framework.

4

1 回答 1

0

添加 ContactsUI 框架。像这样在你的视图控制器中导入它

 import ContactsUI

从各自的视图控制器添加并调用以下方法。

  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
    }

}
于 2016-10-24T09:32:13.743 回答