作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试更新您在种姓 Controller 中的联系人,所有这些都保存完好,这是在添加具有 CNLabeledValue <CNPhoneNumber>
的新号码时格式。我带来了控制台结果我收到了这个错误
CNErrorDomain Code = 2 "(null)" UserInfo = {CNKeyPaths = (
phoneNumbers
)},
<CNLabeledValue: 0x1706755c0: identifier = (null), label = iPhone, value = <CNPhoneNumber: 0x170439100: countryCode = ru, digits = + ***** >>
for i in 0..<contactPhoneEditTableViewRowIndex {
debugPrint("i", i)
if let editRow = getEditPhoneRow(i) {
if !editRow.isHidden {
let phone = editRow.cell.phoneNumberTextField.text ?? ""
let label = editRow.cell.titlePhoneButton.titleLabel?.text ?? ""
if phone != "" {
let phoneModel = CNLabeledValue<CNPhoneNumber>().settingLabel(label, value: CNPhoneNumber(stringValue: phone))
phones.append(phoneModel)
}
}
}
}
debugPrint(phones)
guard let updatedContactModel = contactModel.contact.mutableCopy() as? CNMutableContact else { return }
updatedContactModel.givenName = first
updatedContactModel.familyName = last
updatedContactModel.organizationName = company
updatedContactModel.phoneNumbers = phones
contactManager.updateContact(updatedContactModel) { [weak self] (error) in
if error == nil {
self?.dismiss(animated: true, completion: nil)
} else {
DispatchQueue.main.async {
SVProgressHUD.showError(withStatus: error!.localizedDescription)
}
}
}
func updateContact(_ contact: CNMutableContact, completion: ((_ error: Error?) -> Void)?) {
let req = CNSaveRequest()
req.update(contact)
let store = CNContactStore()
do {
try store.execute(req)
debugPrint("updateContact success")
completion?(nil)
} catch {
completion?(error)
let _error = error as NSError
debugPrint(_error)
}
}
最佳答案
我改变了这段代码
let phoneModel = CNLabeledValue<CNPhoneNumber>().settingLabel(label, value: CNPhoneNumber(stringValue: phone))
let phoneModel = CNLabeledValue(label: phoneLabel, value: CNPhoneNumber(stringValue: phone))
它解决了我的问题
关于ios - 如何更新CNContact?获取 CNErrorDomain 代码=2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42042370/
我是一名优秀的程序员,十分优秀!