vote up 1 vote down star
2

How difficult would it be to use core animation to make an NSView slide in an out of view like a sheet? Generally speaking, what would be involved in accomplishing this? I've been reading through the CA documentation, but it's been hard for me to pinpoint which parts are relevant to what I want to do since I have no experience with the framework.

Any tips at all would be much appreciated.

Thanks.

flag

73% accept rate

2 Answers

vote up 1 vote down check

Since you're talking of a NSView, you're probably using Cocoa's animation support, not CA directly. In this case, you just need to set the view's frame through the view's animator object:

[theView setFrame:offscreenFrame];
[[theView animator] setFrame:finalFrame];

Unfortunately, Cocoa view animation interacts badly with the more advanced features of CA, like setting an easing. You might have more luck using NSViewAnimation instead, which is not Core Animation-backed and allows for a little more flexibility.

link|flag
Interesting. I'll look into this. Thanks. – Rich Catalano Feb 22 at 20:11
vote up 0 vote down

I wrote this method to slide a view up from the bottom and stop at the bottom of the navigation bar.

// method in GameViewController
-(void) slideViewUp: (UIViewController*) viewController {
  CGRect gameViewFrame = self.view.frame;
  CGRect navigationBarFrame = [navigationBar frame];

  // calculating starting position off screen at the bottom
  CGRect startFrame = viewController.view.frame;
  startFrame.origin.x = 0;
  startFrame.origin.y = gameViewFrame.origin.y + gameViewFrame.size.height 
                        + navigationBarFrame.origin.y + navigationBarFrame.size.height;
  startFrame.size.width = gameViewFrame.size.width;
  startFrame.size.height = gameViewFrame.size.height - navigationBarFrame.size.height;

  // calculate ending position touching navigation bar
  CGRect endFrame = startFrame;
  endFrame.origin.y = startFrame.origin.y - gameViewFrame.size.height;

  [self.view addSubview: viewController.view];
  viewController.view.frame = startFrame;

  [UIView beginAnimations: nil context: nil];
  [UIView setAnimationDuration: 0.5];
  viewController.view.frame = endFrame;
  [UIView commitAnimations];
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.