ios开发讲解之anchorPoint和position详解
Posted free-thinker
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios开发讲解之anchorPoint和position详解相关的知识,希望对你有一定的参考价值。
相信初接触到CALayer的人都会遇到以下几个问题: 为什么修改anchorPoint会移动layer的位置? CALayer的position点是哪一点呢? anchorPoint与position有什么关系?
每一个UIView都默认关联着一个CALayer, UIView有frame、bounds和center三个属性,CALayer也有类似的属性,分别为frame、bounds、position、anchorPoint。那position、anchorPoint是什么呢?先看看两者的原型,可知都是CGPoint点。
@property CGPoint position ;
@property CGPoint anchorPoint ;
以上是关于ios开发讲解之anchorPoint和position详解的主要内容,如果未能解决你的问题,请参考以下文章
iOS开发之layer.frame,layer.anchorPoint,layer.position对frame的影响
iOS开发中的position+anchorPoint与frame应用解释