本文介绍了如何防止CALayer隐式动画?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我设置 CALayer 实例的 backgroundColor 属性时,更改似乎略有动画。但在我的情况下,我不希望这样。如何在没有动画的情况下设置 backgroundColor

When I set the backgroundColor property of an CALayer instance, the change seems to be slightly animated. But I don't want that in my case. How can I set the backgroundColor without animation?

推荐答案

你可以换行带有禁用动画的 CATransaction 的更改:

You can wrap the change in a CATransaction with disabled animations:

[CATransaction begin];
[CATransaction setValue:(id)kCFBooleanTrue forKey:kCATransactionDisableActions];
//change background colour
[CATransaction commit];

这篇关于如何防止CALayer隐式动画?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-25 02:10