我们先看看来自大众的解答:
frame: 该view在父view坐标系统中的位置和大小。(参照点是,父亲的坐标系统)
bounds:该view在本地坐标系统中的位置和大小。(参照点是,本地坐标系统,就相当于ViewB自己的坐标系统,以0,0点为起点)
看了只是在脑袋里一闪而过,好像并不明白啥时候用 frame, 啥时候用 bounds
我们来看看下面的代码:
-(CGRect)frame{
return CGRectMake(self.frame.origin.x,self.frame.origin.y,self.frame.size.width,self.frame.size.height);
}
-(CGRect)bounds{
return CGRectMake(0,0,self.frame.size.width,self.frame.size.height);
}
似乎就一目了然了。
下面做个 demo 演示下,
先在 self.view 加一个 子 View1 ,给背景色为灰色,给定一个 frame
UIView *view1 = [[UIView alloc] initWithFrame:CGRectMake(50, 50, 100, 100)];
view1.backgroundColor = [UIColor grayColor];
[self.view addSubview:view1];
接下来在 view1 上加 view2(红色)和 VIew3(绿色),view2的 frame 等于 View1 的 frame, View3 的 frame 等于View1的 bounds,对比下他们的位置。 代码如下:
UIView *view2 = [[UIView alloc] initWithFrame:view1.frame];
view2.backgroundColor = [UIColor redColor];
[view1 addSubview:view2];
UIView *view3 = [[UIView alloc] initWithFrame:view1.bounds];
view3.backgroundColor = [UIColor greenColor];
[view1 addSubview:view3];
运行结果如下: