1.简单的理解
- position设置CALayer 在父层中的位置
- anchorPoint决定CALayer上的哪个点在position所指的位置上。自己的左上角为(0,0)。
myLayer.anchorPoint = CGPointMake(1, 1)
红色的图为棕色的图改变anchorPoint后的位置。
2.小结
- anchorPoint 的默认值是(0.5,0.5),就是长方形的中心点。
- position是layer中的anchorPoint在superLayer中的位置坐标。
- layer的位置由position和anchorPoint共同决定
frame.origin.x = position.x - anchorPoint.x *bounds.size.width