Skip to content

Instantly share code, notes, and snippets.

@vialyx
Created February 21, 2018 10:25
Show Gist options
  • Save vialyx/f9b8c2c0ca30fcb2dfd9b35e867b0983 to your computer and use it in GitHub Desktop.
Save vialyx/f9b8c2c0ca30fcb2dfd9b35e867b0983 to your computer and use it in GitHub Desktop.
private var items: [GymShort] = [] {
willSet {
let old = Array(Set(items).subtracting(Set(newValue)))
view.remove(old)
}
didSet {
let new = Array(Set(items).subtracting(Set(oldValue)))
view.add(new)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment