Tagged Questions
The nsviewanimation tag has no wiki summary.
4
votes
2answers
970 views
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 ...
1
vote
0answers
129 views
NSViewAnimation - too slow
I am quite new to Cocoa programming. I have custom view (iBox) inside which there are 8 more custom views of another class (iCircle). I want to make animation which would resize the iBox and move each ...
1
vote
1answer
394 views
CATransition with CIFilter doesn't work first time,works second time
I want to add CATransition animation for NSView. I have the following code:
[contentView setWantsLayer:YES];
NSRect rect = [contentView bounds];
NSData *shadingBitmapData = [NSData ...
1
vote
3answers
663 views
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 ...
0
votes
0answers
23 views
Combining resize and fade animation on an NSWindow
I'm currently facing a strange effect when I try to do two animations together using NSViewAnimation. Here's my code:
{
NSDictionary *fadeWindow = [NSDictionary dictionaryWithObjectsAndKeys:
...
0
votes
1answer
43 views
Using NSViewAnimation to continuously animate frameRotation
I'm trying to figure out the right way to continuously animate the frameRotation of a layer-backed NSView.
In particular, I'm basically trying to re-create how the new Launchpad animates when you ...
0
votes
0answers
107 views
Animating an NSView frame, then jumping to specific frame.
I'm trying to slide a gridded NSView up, revealing another row from another NSView. Then, once the animation is done, the second NSView will dissapear, and the first will immediately move back to its ...
0
votes
1answer
272 views
Is there a way to make NSAnimation “Begin from current state” like on the iPhone?
I want to make a view move to a different position on window resize. I currently do this with NSViewAnimation on receiving the NSWindowDidResizeNotification.
// Create the view animation object.
...
0
votes
1answer
267 views
Using NSViewAnimation with NSAnimationEaseOut weird behaviour
In one of my views that can be dragged, if the user drops it at an inappropriate place, it simply drops back to the original frame that was recorded when the mouse went down. This has been working ...
0
votes
1answer
150 views
Prevent an instance of NSView from receiving mouse events
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. ...