Skip to content

Instantly share code, notes, and snippets.

@nalexn
Created December 21, 2019 13:05
Show Gist options
  • Save nalexn/99ad08a710dd523bf31059bbe881c4c5 to your computer and use it in GitHub Desktop.
Save nalexn/99ad08a710dd523bf31059bbe881c4c5 to your computer and use it in GitHub Desktop.
object.objectWillChange
.delay(for: .nanoseconds(1), scheduler: RunLoop.main)
.compactMap { _ in makeSnapshot() }
.prepend(makeSnapshot())
.removeDuplicates()
.dropFirst()
.sink { [weak self] _ in
self?.objectWillChange.send()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment