Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. func updateFriendSaidHi(friend: Friends, in context: NSManagedObjectContext = CoreDataStack.shared.container.newBackgroundContext()){
  2. context.performAndWait {
  3. // Update value to true in core data
  4. friend.saidHi = true
  5. saveToPersistentStore()
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement