I’m trying to do a simple animation of an NSView. The view had some weird "jumping" problems and I managed to strip my code down to
[editView setFrame:NSMakeRect([editView bounds].origin.x,
[editView bounds].origin.y,
[editView bounds].size.width,
[editView bounds].size.height)];
and it still produces the "jummping" problem. When I run this, I would expect the view to not move at all but on the first and only the first time, it jumps to the left about 200px. What could possibly be going wrong?