博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UIView的frame和bounds区别
阅读量:6035 次
发布时间:2019-06-20

本文共 1132 字,大约阅读时间需要 3 分钟。

hot3.png

iOS中,设置view在父view中的位置和大小时,只需要设置frame就可以了。frame是相对于superview坐标系的,而bounds则相对于view自身的坐标系,但是frame究竟是怎样表示坐标的呢,这就和bounds有关了。

frame.size 和bounds.size 一样,但是UIView中,frame其实是不存储的,而是动态计算的,改变center,改变bounds大小,或者改变transfrom都可能会导致frame的改变。 

UIView的frame是一个动态的,官方文档中有提到

// animatable. do not use frame if view is transformed since it will not correctly reflect the actual location of the view. use bounds + center instead.

@property(nonatomic) CGRect frame;

大意是说,如果我们的view有transform,则frame不能反映其在父view中的实际位置,需要用bounds+center来反映。

假定我们的view没有transform。 每次我们设置frame时,则系统首先会设置

bounds.origin = 0,0

bounds.size = frame.size

然后会继续设置

center.x = frame.origin.x + frame.size.width / 2

center.y = frame.origin.y + frame.size.height / 2

也就是说 设置frame时,我们的bounds和center都会发生变化,但是view的位置是由center和bounds共同决定的,完全可以不依赖于frame。

每次我们访问frame时,其实也是通过center和bounds计算。

frame.size = bounds.size

frame.origin.x = center.x - bounds.size.width / 2
frame.origin.y = center.y - bounds.size.height / 2

当然期间如果有transform,则会考虑到transfrom,比如大小缩小到0.9倍,则center不变,frame.size 变为 0.9倍,origin也会跟着变。 transform不会影响到view的bounds和center,但是会影响到frame。

转载于:https://my.oschina.net/u/2618362/blog/668653

你可能感兴趣的文章
Damien Katz弃Apache CouchDB,继以Couchbase Server
查看>>
Target runtime Apache Tomcat is not defined.错误解决方法
查看>>
某机字长为32位,存储容量为64MB,若按字节编址.它的寻址范围是多少?
查看>>
VC++ 监视文件(夹)
查看>>
【转】keyCode对照表及JS监听组合按键
查看>>
[Java开发之路](14)反射机制
查看>>
mac gentoo-prefix安装git svn
查看>>
浅尝异步IO
查看>>
C - Train Problem II——(HDU 1023 Catalan 数)
查看>>
Speak loudly
查看>>
iOS-在项目中引入RSA算法
查看>>
[译] 听说你想学 React.js ?
查看>>
gulp压缩合并js与css
查看>>
块级、内联、内联块级
查看>>
Predicate
查看>>
[面试题记录01]实现一个function sum达到一下目的
查看>>
这个季节的忧伤,点到为止
查看>>
mysql通过配置文件进行优化
查看>>
省级网站群建设关注点
查看>>
工作第四天之采集资源
查看>>