码迷,mamicode.com
首页 > 其他好文 > 详细

UIView的autoresizingMask属性

时间:2014-12-12 14:51:40      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   color   sp   on   div   log   

今天做相册列表的时候,发现有些 UITableViewController 属性不好记忆,然后就查找了一些资料。做一下备份。

在 UIView 中有一个autoresizingMask的属性,它对应的是一个枚举的值(如下),属性的意思就是自动调整子控件与父控件中间的位置,宽高。

 

enum {
   UIViewAutoresizingNone                 = 0,
   UIViewAutoresizingFlexibleLeftMargin   = 1 << 0,
   UIViewAutoresizingFlexibleWidth        = 1 << 1,
   UIViewAutoresizingFlexibleRightMargin  = 1 << 2,
   UIViewAutoresizingFlexibleTopMargin    = 1 << 3,
   UIViewAutoresizingFlexibleHeight       = 1 << 4,
   UIViewAutoresizingFlexibleBottomMargin = 1 << 5
};

UIViewAutoresizingNone就是不自动调整 , 控件相对于父视图坐标值不变。
UIViewAutoresizingFlexibleLeftMargin 自动调整与superView左边的距离,保证与superView右边的距离不变。
UIViewAutoresizingFlexibleRightMargin 自动调整与superView的右边距离,保证与superView左边的距离不变。
UIViewAutoresizingFlexibleTopMargin 自动调整与superView顶部的距离,保证与superView底部的距离不变。
UIViewAutoresizingFlexibleBottomMargin 自动调整与superView底部的距离,也就是说,与superView顶部的距离不变。
UIViewAutoresizingFlexibleWidth 自动调整自己的宽度,保证与superView左边和右边的距离不变, 控件的宽度随着父视图的宽度按比例改变。

  例如:label宽度为100,屏幕的宽度为320。当屏幕宽度为480时,label宽度变为100*480/320
UIViewAutoresizingFlexibleHeight 自动调整自己的高度,保证与superView顶部和底部的距离不变。


UIViewAutoresizingFlexibleLeftMargin  |UIViewAutoresizingFlexibleRightMargin 自动调整与superView左边的距离,保证与左边的距离和右边的距离和原来距左边和右边的距离的比例不变。

     例如:CGRectMake(50, 100, 200, 40)]; 当屏幕的宽度为320,x为50;

      当屏幕宽度为480时,labelx坐标变为 50*480/320。控件坐标变为 CGRectMake(75, 100, 200, 40)];

  原来距离为20,30,调整后的距离应 为68,102,即68/20=102/30。

 

其它的组合类似。

 

 

 

 

 

本文转载自:http://www.cnblogs.com/jiangyazhou/archive/2012/06/26/2563041.html

UIView的autoresizingMask属性

标签:style   blog   http   ar   color   sp   on   div   log   

原文地址:http://www.cnblogs.com/allanliu/p/4159544.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!