Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to figure out how to make animations with NSAnimationContext, but can't make NSAnimationContext perform animations with provided duration. Can somebody help me?

self.duration = 10.0;
NSView *newView = viewController.view;
newView.autoresizingMask = NSViewWidthSizable | NSViewHeightSizable;
[newView setFrame:self.view.frame];

[NSAnimationContext runAnimationGroup:^(NSAnimationContext *context) {
    if (self.stack.count == 0) {
        [[self.view animator] addSubview:newView];
    }
    else {
        NSView *oldView = self.topViewController.view;
        [[self.view animator] replaceSubview:oldView with:newView];
    }
    context.duration = self.duration;
} completionHandler:^{
    [self.stack addObject:viewController];
}];
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.