我想删除联系人号码,我使用ContactsUI
//only do this to the first contact matching our criteria
guard let contact = contacts?.first else{
return
}
let editContact = contact.mutableCopy() as! CNMutableContact
editContact.phoneNumbers[1]..... ?
在editContact.phoneNumbers [1] ..我想消除那个位置的号码
编辑它,我以这种方式编辑它。它运作良好
editContact.phoneNumbers[1] = CNLabeledValue(label: "home",
value: CNPhoneNumber(stringValue: "1234567"))
但我该如何消除它