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];
}];
