使用Apple默认编辑屏幕编辑/删除电话联系人联系人

时间:2016-06-13 09:47:51

标签: ios swift contacts addressbook

我想通过我的应用程序从地址簿中删除联系人,任何人都可以帮助我。我正在使用地址簿框架。enter image description here

我想像删除联系选项一样屏幕,但对我来说没有删除选项

 let addr:ABMultiValue = ABMultiValueCreateMutable(ABPropertyType(kABStringPropertyType)).takeRetainedValue()
    ABMultiValueAddValueAndLabel(addr,SecondPart as String, kABHomeLabel, nil)

    ABRecordSetValue(newPerson, kABPersonPhoneProperty, addr, nil)


    let picker: ABNewPersonViewController = ABNewPersonViewController()
    picker.displayedPerson = newPerson
    picker.newPersonViewDelegate = self
    self.navigationController?.pushViewController(picker, animated: true)

当我搜索此问题时发现one ref,但不适合。通过链接我怎样才能实现此目的。

并尝试如下

picker.allowsDeletion = true

但是由于这个有错误,bcoz在ABNewPersonViewController中没有成员函数

你可以帮助我!,提前谢谢

0 个答案:

没有答案