我可以提高presentModalViewController的动画速度吗?

时间:2009-06-28 20:57:46

标签: iphone objective-c uinavigationcontroller core-animation

我正在编写一个绘图应用程序,当用户单击工具栏中的项目时,该应用程序会显示工具视图控制器。但是,我的一些beta测试者报告说,工具的味道打开得太慢了。我正在使用标准的presentModalViewController:animated:调用来显示工具,我已经尝试将它包装在这样的代码块中以加快速度:

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration: 0.1];
[self presentModalViewController:settings animated:YES];
[UIView commitAnimations];

不幸的是,这不起作用。如果你说动画:不是它效果更好,但是底层绘图画布视图会被立即删除(因为控制器认为它不再可见),因此动画发生在白色背景上。

在此之前是否有人愿意提供一些建议?我很感激!

2 个答案:

答案 0 :(得分:10)

已编辑:为iOS 5及更高版本添加了控制器包含的另一个选项。

另一种解决方案是设置图层的时间空间。

这是通过CALayer的speed属性完成的。要减慢动画速度,可以使用:

MytransparentVCViewController *vc = [[MytransparentVCViewController alloc] initWithNibName:@"MytransparentVCViewController" bundle:nil];
// Makes all animations 10 times slower
// To speed it up, set it to multiples of 1: 2 is 2 times faster, 3 is 3 times faster etc
vc.view.layer.speed = 0.1; 
[self presentModalViewController:vc animated:YES];

请注意,如果您的目标是更改您将要呈现的模态视图控制器的动画速度,则链接帖子中的建议解决方案将不起作用(例如,如果您使用UIModalTransitionStyleCoverVertical)。

图层的速度不是绝对值,而是该图层的父时空的函数(当然,除非图层位于图层层次结构的根中)。例如,当您将图层的速度设置为2时,与该图层父图层的动画相比,它的动画运行速度将快两倍。

另一种选择是使用视图控制器包含。 (仅限iOS 5及更高版本)

http://developer.apple.com/library/ios/DOCUMENTATION/UIKit/Reference/UIViewController_Class/Reference/Reference.html#//apple_ref/doc/uid/TP40006926-CH3-SW81

您可以使用UIViewController的transitionFromViewController完全控制动画:toViewController:duration:options:animations:completion:。

答案 1 :(得分:1)

提出类似的问题here

您也可以使用此技术更改速度,但在我的实验中,它会在空白背景下进行,正如您所建议的那样。