我正在尝试在联系人中存储自定义标签和相关日期。这是我的代码:
let contact = CNMutableContact()
let customLabel = "Label"
let customDate = DateComponents(year:1980, month:1, day:1)
contact.dates.append(CNLabeledValue<DateComponents>(label:customLabel, value:customDate))
产生的错误(在最后一行)是:
“类型'DateComponents'不符合协议'NSCopying'”
任何帮助都将不胜感激。
答案 0 :(得分:0)
dates
属性采用CNLabeledValue<NSDateComponents>
数组。
您需要在最后一行稍微调整一下代码才能使用NSDateComponents
:
let contact = CNMutableContact()
let customLabel = "Label"
let customDate = DateComponents(year:1980, month:1, day:1)
contact.dates.append(CNLabeledValue<NSDateComponents>(label:customLabel, value:customDate as NSDateComponents))