美文网首页
CAlayer 的属性position和anchorPoint(

CAlayer 的属性position和anchorPoint(

作者: lhg_serven | 来源:发表于2016-09-28 15:45 被阅读44次

    /***CALayer有2个非常重要的属性:position和anchorPoint(锚点)

    @property CGPoint position;

    用来设置CALayer在父层中的位置,以父层的左上角为原点(0, 0)

    @property CGPoint anchorPoint称为“定位点”、“锚点”是相对本身图层的位置坐标

    决定着CALayer身上的哪个点会在position属性所指的位置,以自己的左上角为原点(0, 0)它的x、y取值范围都是0~1,默认值为(0.5, 0.5)

    所以layer在父视图中的位置是由anchorPoint和positon一起决定的,***/

    position和anchorPoint

    添加一个红色图层到绿色图层上,红色图层显示到什么位置,由position属性决定

    假设红色图层的position是(100,100)

    到底把红色图层的哪个点移动到(100,100)的坐标位置,锚点。

    相关文章

      网友评论

          本文标题:CAlayer 的属性position和anchorPoint(

          本文链接:https://www.haomeiwen.com/subject/esphyttx.html