iOS开发-自动布局之autoresizingMask使用详解(Storyboard&Code)

前言:如今已经不像之前那样只有一个尺寸,如今最少的IPHONE开发须要最少须要适配三个尺寸。所以之前咱们可使用硬坐标去设定各个控件的位置,可是如今的话已经不能够了,咱们须要去作适配,也许你说可使用两套UI或两套以上的UI,但那样不高效也不符合设计。IOS有两大自动布局利器:autoresizing 和 autolayout(autolayout是IOS6之后新增)。autoresizing是UIView的属性,一直存在,使用也比较简单,可是没有autolayout那样强大。若是你的界面比较简单,要求的细节没有那么高,那么你彻底可使用autoresizing去进行自动布局。如下会针对autoresizing进行讨论。布局

 

0、autoresizing使用前的解释:spa

UIViewAutoresizing是一个枚举类型,默认是UIViewAutoresizingNone,也就是不作任何处理。设计

typedef NS_OPTIONS(NSUInteger, UIViewAutoresizing) {
    UIViewAutoresizingNone                 = 0,
    UIViewAutoresizingFlexibleLeftMargin   = 1 << 0,
    UIViewAutoresizingFlexibleWidth        = 1 << 1,
    UIViewAutoresizingFlexibleRightMargin  = 1 << 2,
    UIViewAutoresizingFlexibleTopMargin    = 1 << 3,
    UIViewAutoresizingFlexibleHeight       = 1 << 4,
    UIViewAutoresizingFlexibleBottomMargin = 1 << 5
};

 

各属性解释:3d

UIViewAutoresizingNonecode

不会随父视图的改变而改变

UIViewAutoresizingFlexibleLeftMarginblog

自动调整view与父视图左边距,以保证右边距不变

UIViewAutoresizingFlexibleWidth开发

自动调整view的宽度,保证左边距和右边距不变

UIViewAutoresizingFlexibleRightMarginget

自动调整view与父视图右边距,以保证左边距不变

UIViewAutoresizingFlexibleTopMargin博客

自动调整view与父视图上边距,以保证下边距不变

UIViewAutoresizingFlexibleHeightit

自动调整view的高度,以保证上边距和下边距不变

UIViewAutoresizingFlexibleBottomMargin

自动调整view与父视图的下边距,以保证上边距不变

 

 

 

 

 

 

 

 

 

 

 

 

 

 

在这里说明一下,若是是常用Storyboard/Xib设置autoresizing,那么转变使用代码设置autoresizing的话,容易出现理解错误问题。好比说UIViewAutoresizingFlexibleTopMargin,也许会被误认为是顶部距离不变,实际上是底部距离不变。这个解决办法也很简单,只须要把使用代码和使用Storyboard设置autoresizing,它们是相反的,只须要这样去记就能够了。

 

autoresizing组合使用:

也就是枚举中的值可使用|隔开,同时拥有多个值的功能,能够针对不一样的场景做不一样的变化。例如:

UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleBottomMargin

意思是:view的宽度按照父视图的宽度比例进行缩放,距离父视图顶部距离不变。

其它的组合相似,我这里就不一一列举了。

 

注意:

1)view的autoresizesSubviews属性为yes时(默认为yes),autoresizing才会生效。

2)从XCODE6开始,Storyboard&Xib默认是自动布局,所以咱们须要手动调整,才能使用autoresizing。

具体操做如图(打开Storyboard文件,你就会看到下面图的界面):

 

下面会写一个简单的例子以给予大家更直观的理解,并会在本文最后附上Demo下载地址,请继续往下观看噢。

Demo:

1)顶部距离父视图距离不变

2)宽度按父视图比例进行拉伸 

3)view与父视图的左边距和右边距不变

 

1、使用代码(Code)控制autoresizingMask

下面是项目用到的宏:

#define topSpace 64
#define kMargin 20

#define kTopViewHeight 44
#define kTopViewWidth 300

#define kTextLabelWidth 200
#define kTextLabelHeight 30

 

没有作适配以前的代码:

// 以Iphone4(320, 480)为基础,设置各控件的位置
// 注意:必须全部控件都按照Iphone4(320, 480)为基础初始化一次,否则按比例缩放时会发生错误!
UIView *topView = [[UIView alloc] initWithFrame:CGRectMake(kMargin, topSpace, kTopViewWidth, kTopViewHeight)];
CGFloat textLabelTop = (topView.frame.size.width - kTextLabelWidth) / 2;
CGFloat textLabelWidth = (topView.frame.size.height - kTextLabelHeight) / 2;
UILabel *textLabel = [[UILabel alloc] initWithFrame:CGRectMake(textLabelTop, textLabelWidth, kTextLabelWidth, kTextLabelHeight)];

// 设置文字及居中
[textLabel setText:@"Garvey"];
[textLabel setTextAlignment:NSTextAlignmentCenter];

// 分别设置样式
[topView setBackgroundColor:[UIColor redColor]];
[textLabel setTextColor:[UIColor whiteColor]];// 添加视图
[topView addSubview:textLabel];
[self.view addSubview:topView];

 

它将会显示:

使用autoresizing进行界面适配:

补充:你能够先按其它的设备尺寸为界面上的控件初始化,由于autoresizing是会以父视图的改变而改变。

// 以Iphone4(320, 480)为基础,设置各控件的位置
// 注意:必须全部控件都按照Iphone4(320, 480)为基础初始化一次,否则按比例缩放时会发生错误!
UIView *topView = [[UIView alloc] initWithFrame:CGRectMake(kMargin, kTopSpace, kTopViewWidth, kTopViewHeight)];
CGFloat textLabelTop = (topView.frame.size.width - kTextLabelWidth) / 2;
CGFloat textLabelWidth = (topView.frame.size.height - kTextLabelHeight) / 2;
UILabel *textLabel = [[UILabel alloc] initWithFrame:CGRectMake(textLabelTop, textLabelWidth, kTextLabelWidth, kTextLabelHeight)];

// 设置文字及居中
[textLabel setText:@"Garvey"];
[textLabel setTextAlignment:NSTextAlignmentCenter];

// 分别设置样式
[topView setBackgroundColor:[UIColor redColor]];
[textLabel setTextColor:[UIColor whiteColor]];

// 设置文字控件的宽度按照上一级视图(topView)的比例进行缩放
[textLabel setAutoresizingMask:UIViewAutoresizingFlexibleWidth];
// 设置View控件的宽度按照父视图的比例进行缩放,距离父视图顶部、左边距和右边距的距离不变
[topView setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleBottomMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleLeftMargin];

// 添加视图
[topView addSubview:textLabel];
[self.view addSubview:topView];

// 注意:从新设置topView位置的代码,必需要写在添加视图的后面,否则autoresizing的位置计算会出错!
CGFloat topViewWidth = kUIScreen.size.width - kMargin * 2;
[topView setFrame:CGRectMake(kMargin, kTopSpace, topViewWidth, kTopViewHeight)];

 

最后显示:

  

2、在Storyboard控制autoresizingMask

Storyboard上只有两个控件,View 和 Label。

 

若是咱们不作任何的适配方案,它将会显示:

默认是是贴近左上方,在Autoresizing上能够看到:

 

其实要作到目标显示那样也是很是简单的,两个控件以下设置:

意思是:

1)顶部距离父视图距离不变

2)宽度按父视图比例进行拉伸 

3)view与父视图的左边距和右边距不变

 

最后显示:

 

小结:

对比以上两个使用方法,是否是以为使用代码去进行autoresizing的控制,会相对于比较麻烦。

若是是使用Stroyboard/Xib的话就会很是简单,只须要点击几个地方就能够了,看你们选择哪一种方法。

 

Demo下载:http://pan.baidu.com/s/1qWnxsZU

 

官方自带预告:将来会进行autolayout的研究,会把研究后所获得的收获会和你们分享,请你们关注一下咯,谢谢。

 


博文做者:GarveyCalvin

博文出处:http://www.cnblogs.com/GarveyCalvin/

本文版权归做者和博客园共有,欢迎转载,但须保留此段声明,并给出原文连接,谢谢合做!

相关文章
相关标签/搜索