IOS Swift – 无法从地址簿中检索人员注释

任何人都有任何建议为什么我可以获得firstName,lastname和birthday,但是我无法检索从iphone地址簿提交的备注?

Preprations

  • 地址簿访问被授予
  • 在地址簿中添加了包括注释在内的所有领域的人

目前的结果

nil仅供注释,所有其他字段均可正确检索

使用的示例代码

var firstName: String = ABRecordCopyValue(person, kABPersonFirstNameProperty).takeRetainedValue() as NSString var lastName: String = ABRecordCopyValue(person, kABPersonLastNameProperty).takeRetainedValue() as NSString let birthday = ABRecordCopyValue(person, kABPersonBirthdayProperty)?.takeRetainedValue() as NSDate? let notes = ABRecordCopyValue(person, kABPersonNoteProperty)?.takeRetainedValue() as NSString?