我想用Core Animation自定义推送和流行动画!例如,我在pushViewController中编写了一些代码,如下所示:
{
//save currrent view's snapshot`
m_curLayer = [self _ConstructLayerByView:self.view];
[super pushViewController:viewController animated:NO];
//save the next view's snapshot
m_nextLayer = [self _ConstructLayerByView:self.view];
//add these two new layers to self.view.layer, and add customized animations to them.
[self _PushAnimation];
}
动画符合我的期望,但表现不错。经过一些分析后,我发现renderInContext非常慢。我的快照功能是:
+ (id)CaptureView:(UIView *)view
{
UIGraphicsBeginImageContextWithOptions(view.frame.size, YES, [UIScreen mainScreen].scale);
CGContextRef contenxt = UIGraphicsGetCurrentContext();
[view.layer renderInContext:contenxt];
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return (id) [newImage CGImage];
}
所以我想问一下是否有办法优化renderInContext,或者更好的方法来自定义动画?
答案 0 :(得分:1)
使用添加到UIViewController或子类UINavigationController的新“容器”功能编码您自己的导航控制器,并覆盖所有push和pop方法。可能后者可以正常工作 - 我将其子类化为其他原因,我的子类工作正常。
许多人评论说,使用ios5容器方法中的新方法,现在可以重新创建大多数(如果不是全部)现有容器类。