Ios Layer之anchorPoint与position

1.简单的理解

  • position设置CALayer 在父层中的位置
  • anchorPoint决定CALayer上的哪个点在position所指的位置上。自己的左上角为(0,0)。
         myLayer.anchorPoint = CGPointMake(1, 1)
Ios Layer之anchorPoint与position_第1张图片
图片.png

红色的图为棕色的图改变anchorPoint后的位置。

2.小结

  • anchorPoint 的默认值是(0.5,0.5),就是长方形的中心点。
  • position是layer中的anchorPoint在superLayer中的位置坐标。
  • layer的位置由position和anchorPoint共同决定frame.origin.x = position.x - anchorPoint.x *bounds.size.width

你可能感兴趣的:(Ios Layer之anchorPoint与position)