Guest User

Untitled

a guest
Feb 23rd, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. let contactToUpdate = matchingContact.mutableCopy() as! CNMutableContact // hint: .mutableCopy()
  2. contactToUpdate.familyName = c.nachname // update family name, new string derived from some other source earlier
  3. let saveRequest = CNSaveRequest()
  4. saveRequest.update(contactToUpdate) // hint: .update
  5. try! store.execute(saveRequest)
Add Comment
Please, Sign In to add comment