温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

CALayer 的 position和anchorPoint属性

发布时间:2020-06-05 15:06:19 来源:网络 阅读:252 作者:张立达 栏目:网络安全

在iOS 中,UIButton、UIImage等UIView 之所以能够显示在屏幕上,是因为其内部有一个图层(CALayer)。通过UIView的layer 属性可以访问这个图层:

@property(nonatomic,readonly,retain) CALayer *layer;

当UIView需要显示到屏幕上时,会调用 drawRect: 方法进行绘图,并且会将所有内容绘制在自己的图层上,绘图完毕后,系统会将图层拷贝的屏幕上,于是就完成了UIView的显示。

UIView中有两个容易混淆的属性, postion 和 anchorPoint(锚点)。postion用来设置CALayer 在父层中的位置,anchorPoint决定着CALayer上的哪个点会在postion点上。举个例子来说,红×××层要加在绿×××层上。

(1)positon为(100,100),anchorPoint为(0,0),效果图如下

CALayer 的 position和anchorPoint属性

(2)positon为(100,100),anchorPoint为(0.5,0.5),效果图如下

CALayer 的 position和anchorPoint属性

(3)positon为(100,100),anchorPoint为(1,1),效果图如下

CALayer 的 position和anchorPoint属性

(4)positon为(100,100),anchorPoint为(1,0.5),效果图如下

CALayer 的 position和anchorPoint属性


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI