iOS 基础-----关于UIView 的 frame 与 bounds_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > iOS 基础-----关于UIView 的 frame 与 bounds

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

 2013/11/26 18:26:02  苹果吧  博客园  我要评论(0)
  • 摘要:首先,对于frame大家都很熟悉,是当前view,相对于其父视图view的坐标,例如:UIView*view1=[[UIViewalloc]initWithFrame:CGRectMake(10,60,300,300)];view1.backgroundColor=[UIColorredColor];[self.viewaddSubview:view1];view1的坐标就是针对self.view所设置的。其中view1距self.view的左侧边缘是10px,距self
  • 标签:view iOS

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

 
    class="dp-objc" start="1">
  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 上的子视图的布局产生影响,不理解的同学,可以自己多试一试,然后就会印象深刻点。
发表评论
用户名: 匿名