Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
UIView 动画与 CA 动画块的性能有区别吗?我知道它们都是 Core Animation 的接口,但我希望在每个动画中压缩最大的性能和资源。谢谢。
您必须自己对它们进行基准测试才能确定,但我的猜测是没有区别。他们都在幕后使用相同的代码,并且 UIView 和 CALayers 的性能几乎相同。通过确保正确处理 alpha,您将获得更多性能。让一切可能变得不透明。通过合成计算的越少,您的动画响应就越快。
最好的祝福。