Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Swift 0.38 KB | None | 0 0
  1.         guard let updatedConversation = updates.first(where: { (each) -> Bool in
  2.             guard let conversation = each as? TAPConversation,
  3.                 let ourConversationID = fetchCoordinator.conversationID() else { return false }
  4.             return conversation.conversationID().isEqual(to: ourConversationID)
  5.         }) as? TAPConversation else {
  6.             return
  7.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement