iOS 基础-----关于UIView 的 frame 与 bounds

首先,对于frame 大家都很熟悉,是当前view ,相对于其父视图view 的坐标,例如:

 
  1. UIView *view1 = [[UIView alloc] initWithFrame:CGRectMake(1060300300)];  
  2. view1.backgroundColor = [UIColor redColor];  
  3. [self.view addSubview: view1];  


view1 的坐标就是针对self.view 所设置的。其中view1 距 self.view 的左侧边缘是10px,距self.view 的顶部 60px。

 

 

现在我们设置view1 的bounds ,

 
  1. view1.bounds = CGRectMake(-1060300300);  


然后运行,你会发现view1的位置没有任何变化,这就对了,bounds是针对view1自身坐标,view1 的bounds 的x ,y 默认是其左上顶点(0,0);运行如图:

 

现在,我们在view1 上加view2, 
  1. UIView *view2 = [[UIView alloc] initWithFrame:CGRectMake(1040100100)];  
  2. view2.backgroundColor = [UIColor yellowColor];  
  3. [view1 addSubview: view2];  
运行如下图:

     
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
也就是说,对bounds 的设置 会对view 上的子视图的布局产生影响,不理解的同学,可以自己多试一试,然后就会印象深刻点。
posted @ 2013-11-26 16:50  苹果吧  阅读(1644)  评论(0编辑  收藏  举报