iPhone:在联系人中创建自定义字段

发布于 2024-08-21 08:47:43 字数 201 浏览 3 评论 0原文

我正在开发一个应用程序,其中我将联系人添加到联系人列表中。我能够提供基本信息,如姓名、地址、电子邮件、电话、注释等,但我想添加一些自定义字段,如 userLabel1、userValue1、bioPersonal、bioWork、bioOther。所以我想添加自定义字段来处理 Book'contacts。

是否可以添加自定义字段来联系?如果是,请建议任何链接或示例代码?

i am developing a application in which i add contact to contact List. i am able to basic info like name, address, email, phone, notes etc. but i want to add some custom field like userLabel1, userValue1 , bioPersonal, bioWork, bioOther. so i want to add custom fields to address Book'contacts.

whether it is possible to add custom field to contact? if yes , then please suggest any link or sample code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

桜花祭 2024-08-28 08:47:43

基本上,没有办法做到这一点。地址簿不允许您添加自定义字段。但是,您可以做的是将您的数据放入每个联系人的“注释”字段中。然而,这在您的其他应用程序中看起来会很奇怪。

Basically, there is no way to do that. Address Book doesn't let you add custom fields. However, what you can do is put your data in the "Notes" field for each contact. That will, however, look weird in apps other than yours.

溺渁∝ 2024-08-28 08:47:43
    let store = CNContactStore()

    // phoneNumberToEdit is the CNContact which you need to update
    guard var mutableCont = phoneNumberToEdit?.mutableCopy() as? CNMutableContact else  { return }
    let phoneNumber = CNPhoneNumber(stringValue: "0123456789")
    var currentContact = CNLabeledValue(label: "MyCustomLabel", value: phoneNumber)
    mutableCont.phoneNumbers = [currentContact]

    let request2 = CNSaveRequest()
    request2.update(mutableCont)
    do{
    try store.execute(request2)
    } catch let error{
    print(error)
    }
    let store = CNContactStore()

    // phoneNumberToEdit is the CNContact which you need to update
    guard var mutableCont = phoneNumberToEdit?.mutableCopy() as? CNMutableContact else  { return }
    let phoneNumber = CNPhoneNumber(stringValue: "0123456789")
    var currentContact = CNLabeledValue(label: "MyCustomLabel", value: phoneNumber)
    mutableCont.phoneNumbers = [currentContact]

    let request2 = CNSaveRequest()
    request2.update(mutableCont)
    do{
    try store.execute(request2)
    } catch let error{
    print(error)
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文