视图UIView的frame、bounds与center属性

114 篇文章 0 订阅
100 篇文章 0 订阅

UIView类中定义了三个属性,分别是frame、bounds与center属性:

[plain]  view plain copy
  1. @property(nonatomic) CGRect frame;  
  2. @property(nonatomic) CGRect bounds;  
  3. @property(nonatomic) CGPoint center;  

frame属性没什么太特别的,它指的是视图在其父视图坐标系中的位置与尺寸。在创建视图时,我们就需要在初始化方法中指定视图的框架尺寸:

[plain]  view plain copy
  1. - (id)initWithFrame:(CGRect)frame;  

这样创建了视图之后,通过addSubview:方法就可以将创建的子视图放置在父视图的指定位置,并以指定的尺寸显示出来。

center属性理解起来也很简单,它就是视图的中心点在其父视图坐标系中的位置坐标。简单讲,center属性就定义了当前视图在父视图中的位置。

那么bounds属性呢?它指的是视图在其自己的坐标系中的位置与尺寸。由于视图的定位一定需要针对父视图,而不是针对自己,所以bounds属性并不能够决定当前视图的位置(因为它与父视图根本无关,就谈不上定位),所以bounds属性与center属性是完全独立的,前者规定尺寸,后者定义位置。换句话说,修改bounds不影响center;修改center不影响bounds。(《iOS应用程序开发方法与实践》中讲到当修改bounds时center会更改,这是一个错误。特附此文。)

默认情况下,当视图创建后,其自己的坐标系原点(0, 0)位于其左上角位置。不过,本地原点位置是会随时发生变化的。例如将bounds由最初的(0, 0, 100, 100)修改为(50, 50, 100, 100),则意味着本地原点向左向上移动了50。由于位置和尺寸都未发生变化,所以frame属性与center属性不变。

[plain]  view plain copy
  1. UIView* testView = [[UIView alloc] initWithFrame:CGRectMake(50, 50, 100, 100)];  
  2. [self.window addSubview:testView];  
  3.   
  4. NSLog(@"Frame: (%.2f, %.2f, %.2f, %.2f)", testView.frame.origin.x, testView.frame.origin.y, testView.frame.size.width, testView.frame.size.height);  
  5. NSLog(@"Bounds: (%.2f, %.2f, %.2f, %.2f)", testView.bounds.origin.x, testView.bounds.origin.y, testView.bounds.size.width, testView.bounds.size.height);  
  6. NSLog(@"Center: (%.2f, %.2f)", testView.center.x, testView.center.y);  
  7.   
  8. NSLog(@"Modify Bounds to (50, 50, 100, 100)");  
  9. testView.bounds = CGRectMake(50, 50, 100, 100);  
  10. NSLog(@"Frame: (%.2f, %.2f, %.2f, %.2f)", testView.frame.origin.x, testView.frame.origin.y, testView.frame.size.width, testView.frame.size.height);  
  11. NSLog(@"Bounds: (%.2f, %.2f, %.2f, %.2f)", testView.bounds.origin.x, testView.bounds.origin.y, testView.bounds.size.width, testView.bounds.size.height);  
  12. NSLog(@"Center: (%.2f, %.2f)", testView.center.x, testView.center.y);  

输出:

[plain]  view plain copy
  1. Frame: (50.00, 50.00, 100.00, 100.00)  
  2. Bounds: (0.00, 0.00, 100.00, 100.00)  
  3. Center: (100.00, 100.00)  
  4. Modify Bounds to (50, 50, 100, 100)  
  5. Frame: (50.00, 50.00, 100.00, 100.00)  
  6. Bounds: (50.00, 50.00, 100.00, 100.00)  
  7. Center: (100.00, 100.00)  

再例如将bounds由最初的(0, 0, 100, 100)修改为(0, 0, 140, 140),则本地原点向左向上移动20。frame属性变为(30, 30, 140, 140),center属性不变,仍然是(100, 100)。

[plain]  view plain copy
  1. UIView* testView = [[UIView alloc] initWithFrame:CGRectMake(50, 50, 100, 100)];  
  2. [self.window addSubview:testView];  
  3.   
  4. NSLog(@"Frame: (%.2f, %.2f, %.2f, %.2f)", testView.frame.origin.x, testView.frame.origin.y, testView.frame.size.width, testView.frame.size.height);  
  5. NSLog(@"Bounds: (%.2f, %.2f, %.2f, %.2f)", testView.bounds.origin.x, testView.bounds.origin.y, testView.bounds.size.width, testView.bounds.size.height);  
  6. NSLog(@"Center: (%.2f, %.2f)", testView.center.x, testView.center.y);  
  7.   
  8. NSLog(@"Modify Bounds to (0, 0, 140, 140)");  
  9. testView.bounds = CGRectMake(0, 0, 140, 140);  
  10. NSLog(@"Frame: (%.2f, %.2f, %.2f, %.2f)", testView.frame.origin.x, testView.frame.origin.y, testView.frame.size.width, testView.frame.size.height);  
  11. NSLog(@"Bounds: (%.2f, %.2f, %.2f, %.2f)", testView.bounds.origin.x, testView.bounds.origin.y, testView.bounds.size.width, testView.bounds.size.height);  
  12. NSLog(@"Center: (%.2f, %.2f)", testView.center.x, testView.center.y);  

输出:

[plain]  view plain copy
  1. Frame: (50.00, 50.00, 100.00, 100.00)  
  2. Bounds: (0.00, 0.00, 100.00, 100.00)  
  3. Center: (100.00, 100.00)  
  4. Modify Bounds to (0, 0, 140, 140)  
  5. Frame: (30.00, 30.00, 140.00, 140.00)  
  6. Bounds: (0.00, 0.00, 140.00, 140.00)  
  7. Center: (100.00, 100.00)  
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值