I have a NSView in my project that I want to move but the animation I usually use for other objects doesn't work with it... what should I do to make it move? Here is my code:
[[NSAnimationContext currentContext] setDuration:1.0];
NSRect rect = NSMakeRect(59.0,10.0,682.0,575.0);
[[self.myView animator] setFrame: rect];