position 和 anchorPoint

CALayer有2个非常重要的属性:position和anchorPoint

图层的position就是view的centre

@property CGPoint position;

用来设置CALayer在父层中的位置

以父层的左上角为原点(0, 0)

@property CGPoint anchorPoint;

称为“定位点”、“锚点”

决定着CALayer身上的哪个点会在position属性所指的位置

以自己的左上角为原点(0, 0)

它的x、y取值范围都是0~1,默认值为(0.5, 0.5),意味着锚点在layer的中间

anchorPoint(示意图)


position 和 anchorPoint_第1张图片
48841898-3968-4a75-9d73-a722970c1a3f.png

你可能感兴趣的:(position 和 anchorPoint)