What are the differences between a UIView and a CALayer?

后端 未结 6 2169
天命终不由人
天命终不由人 2020-12-04 05:42

Both have most of the same attributes, both support different kind of animations, both represent different data. What are the differences between a UIView and a CALayer?

6条回答
  •  萌比男神i
    2020-12-04 05:55

    Simply speaking,UIView inherit from UIResponder, handle events from users, contains CALayer, which inherit from NSObject, mainly focus on rendering, animation etc.

提交回复
热议问题