美文网首页
自动布局之autoresizingMask使用详解

自动布局之autoresizingMask使用详解

作者: 天亮説晚安 | 来源:发表于2016-01-21 20:20 被阅读6507次

    iOS有两大自动布局利器:autoresizing 和 autolayout(autolayout是IOS6以后新增)。autoresizing是UIView的属性,一直存在,使用也比较简单,但是没有autolayout那样强大。如果你的界面比较简单,要求的细节没有那么高,那么你完全可以使用autoresizing去进行自动布局。以下会针对autoresizing进行讨论。

    (1)属性说明

    typedef NS_OPTIONS(NSUInteger, UIViewAutoresizing) {
    //不会随父视图的改变而改变
        UIViewAutoresizingNone                 = 0,
    //自动调整view与父视图左边距,以保证右边距不变
        UIViewAutoresizingFlexibleLeftMargin   = 1 << 0,
    //自动调整view的宽度,保证左边距和右边距不变
        UIViewAutoresizingFlexibleWidth        = 1 << 1,
    //自动调整view与父视图右边距,以保证左边距不变
        UIViewAutoresizingFlexibleRightMargin  = 1 << 2,
    //自动调整view与父视图上边距,以保证下边距不变
        UIViewAutoresizingFlexibleTopMargin    = 1 << 3,
    //自动调整view的高度,以保证上边距和下边距不变
        UIViewAutoresizingFlexibleHeight       = 1 << 4,
    //自动调整view与父视图的下边距,以保证上边距不变
        UIViewAutoresizingFlexibleBottomMargin = 1 << 5
    

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

    (2)autoresizing组合使用:

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

    UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleBottomMargin
    

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

    (3)在xib中设置。(略)

    http://www.cocoachina.com/ios/20141216/10652.html

    相关文章

      网友评论

          本文标题:自动布局之autoresizingMask使用详解

          本文链接:https://www.haomeiwen.com/subject/utglkttx.html