nsviewanimation

Any reason to use NSViewAnimation over CoreAnimation techniques?

I'm working on a Snow Leopard app and I'm doing some view animations (swapping them) and I've seen some older examples using NSViewAnimation. I'm wondering if these are completely obsoleted by Core Animation? It seems fairly simple for me to use [[myView animator] setFrame:newSwapFrame]; But I'm just wondering if I'm missing somethin...

View swap using push animation

I want to swap out one view with another by pushing the old view aside to slide in a new view (the kCATransitionPush type). To use CoreAnimation I need to work with CALayers with my views. The problem is that attaching a backing layer to my window content view through setWantsLayer distorts everything in the view. I'm not sure if this h...

Prevent an instance of NSView from receiving mouse events

Hi, I have an NSView in a window with core animation layer turned on. I use this view to display images with animation from time to time. I need the entire view to be the back layer not only the images. Behind this view which I call AnimationBaseView are other views which the user interacts to. Everything is ok except the AnimationBase...