美文网首页
改变anchorPoint求layer的origin

改变anchorPoint求layer的origin

作者: 不懂冯先生 | 来源:发表于2019-01-18 11:16 被阅读13次

    很好的一篇文章, 可以读一下, 讲position跟锚点关系比较透彻

    frame.origin.x = position.x - anchorPoint.x * bounds.size.width;  
    frame.origin.y = position.y - anchorPoint.y * bounds.size.height;
    

    上面position为中心点, anchorPoint为锚点坐标, 改变锚点会影响layer层位置, 这个是确定方法

    总结下结论:

    1、position是layer中的anchorPoint在superLayer中的位置坐标。
    2、互不影响原则:单独修改position与anchorPoint中任何一个属性都不影响另一个属性。

    --END--
    日积月累, 天天进步.
    PS: PHP, JAVA还是Python?

    相关文章

      网友评论

          本文标题:改变anchorPoint求layer的origin

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