CATransaction

iOS 中的事务,是Core Animation的内容。
用于批量提交对图层的操作,并且是原子性的,支持嵌套。

[CATransaction begin];
    // UI operations here
[CATransaction begin];
    // UI operations here

[CATransaction commit]; 
[CATransaction commit]; 

CATransaction 分为隐式事务和显式事务,一般的直接修改view或layer的一些如frame、center、color等属性时都是稳式事务,除非显式的写begin commit。

可以自定义持续时间,设置完成动作,

可以临时获取一个递归自旋锁来管理属性原子性。

注:引用项表示不太理解。

你可能感兴趣的:(CATransaction)