I'm trying to play an animation when I remove an item from a NSTableView
by dragging the item out of the window.
According to the documentation, its usually done using. NSAnimationEffect
.
These effects are used to indicate that an item was removed from a collection, such as a toolbar, without deleting the underlying data. See NSShowAnimationEffect(::::::).
But I'm not sure how to use this.
Didn't notice that
NSAnimationEffect
had ashow()
method. That seems to do the trick.