How to improve performance of CALayer animations?

2019-06-01 05:07发布

while studying Core Animation, I've made a UIView category which makes a subview be broken into a lot of tiles and diffused. https://github.com/minorblend/HNTileDisappear However, when the number of tiles are not small FPS of animation drops steeply. Is there any way or idea to improve the performance of this kind of CALayer animation?

1条回答
女痞
2楼-- · 2019-06-01 05:57

A few things come to mind:

1) set shouldRasterize to YES on your layers

2) don't use fractional values in frames if you can

3) make your layers opaque

4) try also setting the drawsAsynchronously property on the layers

查看更多
登录 后发表回答