作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们使用 CGRectMake 来设置宽度、高度以及 x 和 y 坐标,但 x 和 y 指的是哪个 坐标是 Root View ,如果是,那么如果我创建一个 subview 然后添加它 按钮到 subview ,那么它会引用哪个坐标?
UIButton *roundRectButton = [UIButton buttonWithType:
UIButtonTypeRoundedRect];
[roundRectButton setFrame:CGRectMake(60, 50, 200, 40)];
最佳答案
当你设置 frame
时,这意味着你正在相对于它的父 View 定位它,当你使用 bounds
时,这意味着你正在将它定位在真实的 ( x,y) 设备坐标。
此处您设置了 View (即 UIButton)的框架,因此您将根据其 parentView
定位它。
关于ios - CGRectMake坐标指的是哪个坐标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22245190/
我是一名优秀的程序员,十分优秀!