iOS锚点
介绍iOS图层中d的锚点anchorPoint
AnchorPoint 锚点
视图(View)的center
属性跟图层(Layer)的position
属性都指定了anchorPoint
相对于父图层的位置。图层的anchorPoint
通过position
来控制它frame
的位置. 可以说anchorPoint
是用来移动图层的把柄.
默认的,anchorPoint
位于图层中点,所以图层会以这个点为中心放置. anchorPoint
的属性在UIVIew
没有被暴露出来,这也是View的position
叫做center
的原因.
但是图层的anchorPoint
可以被移动.比如,你可以把它置于图层frame
的左上角,于是图层的内容就会向右下角的position
移动,而不是居中了.