How can I exclude a piece of code inside a core animation block from being animated?(如何将核心动画块内的一段代码排除在动画之外?)
问题描述
我有一个核心动画块,我在其中调用将加载视图控制器的方法.两个视图控制器之间发生了自定义转换.然而,当视图控制器构建界面时,所有这些东西都会受到核心动画的影响.虽然它会产生一些有趣的效果,但我不希望这样;)
I have an core animation block where I call a method that will load a view controller. there is an custom transition between two view controllers happening. However, when the view controller builds up the interface, all this stuff is affected by core animation. Although it results in some interesting effects, I don't want that ;)
[UIView beginAnimations:@"jump to view controller" context:self];
[UIView setAnimationDuration:0.55];
[UIView setAnimationCurve:UIViewAnimationCurveEaseOut];
// some animated property-changes here...
[self loadViewControllerForIndex:targetIndex]; // everything that happens in this method shall not be animated
UIViewController *controller = [viewControllers objectAtIndex:targetIndex];
[controller viewWillAppear:YES];
[controller viewDidAppear:YES];
[UIView commitAnimations];
很遗憾,我无法将那部分移出街区.
Unfortunately I can't move that part out of the block.
推荐答案
您应该能够通过将 UIView 动画块的一部分包装在 CATransaction 中并为其禁用动画来抑制动画:
You should be able to suppress animations for a section of the UIView animation block by wrapping that section in a CATransaction and disabling animations for it:
[CATransaction begin];
[CATransaction setValue:(id)kCFBooleanTrue forKey:kCATransactionDisableActions];
// Changes to disable animation for here
[CATransaction commit];
这篇关于如何将核心动画块内的一段代码排除在动画之外?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将核心动画块内的一段代码排除在动画之外?


基础教程推荐
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01