Layer锚点

作者: LeeDev | 来源:发表于2017-02-25 18:46 被阅读115次

    主要是研究锚点anchorPoint 、中心点 position

    • 下面有一张开始图片 开始的 anchorPoint是(0.5,0.5),
      position 是相对 父视图的一个 真实的中心点的位置
    开始运行.png
    • 改变锚点位置为(0,0)
    改变后的位置
    • 解释
    /* 
         * position: 中心点,是相对于 父视图的 一个 点(真实的点)
         * anchorPoint:锚点,是相对于自身 视图的点【0,1】的范围
         * anchorPoint 的点 要和 position 重合
         **/
        /*
         * 默认的时候 锚点(0.5,0.5) 和 position 重合
         * 修改后 锚点(0,0)也要和 position 重合
         **/
    

    相关文章

      网友评论

        本文标题:Layer锚点

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