0
Swift 3では特定の連絡先の記念日フィールドを一括削除できますか?iOS Swift 3 - 連絡先情報フィールドを削除します。記念日
連絡先に記念日情報を追加するコードが見つかりましたが、特定の連絡先から既存の記念日情報を削除するコードを探しています。
追加するサンプル:
//add anniversary
let anniversaryDate = NSDateComponents()
anniversaryDate.month = 6
anniversaryDate.day = 13
let anniversary = CNLabeledValue(label: "Anniversary",
value: anniversaryDate)
fooBar.dates = [anniversary]
//save
let request = CNSaveRequest()
request.addContact(fooBar, toContainerWithIdentifier: nil)
do{
try storeo.executeSaveRequest(request)
print("Successfully stored the contact")
} catch let err{
print("Failed to save the contact. \(err)")
}