91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS6+AutoLayout使用教程

發布時間:2020-04-01 07:16:17 來源:網絡 閱讀:605 作者:idanal 欄目:移動開發

為了適配iPhone6 Plus,必須學會AutoLayout了,研究了兩天,記得一下心得iOS6+AutoLayout使用教程

Autolayout類似于安卓里的layout,或者說類似于web開發中的html css,簡單來說就是用相對布局來代替絕對成局(這是我的理解)。


使用Autolayout有兩種方式,1.用xib配置,2.用代碼寫。

無論用xib還是代碼,需要遵循的一個原則是,一個視圖你必須包含以下兩個限制:1.position,設定x,y坐標、上下左右間隙、居中等這些條件都能確定位置,但這幾個是相互沖突的,只能用其一;2.size, 必須設定尺寸,可以設定固定值的寬高,也可以通過設定寬高比例來等比縮放。


1.用xib配置

這種方式比較直觀,打開xib進行配置即可,具體的使用方法網路上有很多介紹,這里就不細說了


2.用代碼寫

用xib配置應該能完成大部分需要,不過還是會有要用代碼寫的時候,下面是我寫的一個例子,包含了option, metric的用法。

這個例子的效果是:xib里放置了兩個水平居中的butt1,butt3,然后用代碼創建了butt2,butt2與butt3水平居中對齊,最后創建了view1,view1只與根視圖進行布局,與不受其他視圖影響


  //butt2

    {

        UIButton *butt = [UIButton buttonWithType:UIButtonTypeCustom];

        butt.backgroundColor = [UIColor redColor];

        [butt setTitle:@"2" forState:UIControlStateNormal];

        butt.translatesAutoresizingMaskIntoConstraints = NO;

        butt.frame = CGRectMake(0, 0, 100, 100);    //這個frame其實是不需要的

        [self.view addSubview:butt];

        butt2 = butt;

        

        //: = 1:1

        [butt2 addConstraint:[NSLayoutConstraint constraintWithItem:butt2 attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:butt2 attribute:NSLayoutAttributeHeight multiplier:1 constant:0]];

        

        //butt2butt3水平對齊,豎直間隙20 寬定為50

        NSDictionary *viewsDict = NSDictionaryOfVariableBindings(butt3,butt2);

        [self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:[butt3]-20-[butt2(==50)]" options:NSLayoutFormatAlignAllCenterX metrics:nil views:viewsDict]];

    }

    

    //A new view,相對于根視圖布局

    {

        UIView *view1 = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, 0)];

        view1.translatesAutoresizingMaskIntoConstraints = NO; //注意,代碼創建的view要設置此屬性為NO以防止系統自動轉換autoresizing

        view1.backgroundColor = [UIColor blueColor];

        [self.view addSubview:view1];

        

        //1.寬高比1:1.5

        [self.view addConstraint:[NSLayoutConstraint constraintWithItem:view1 attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:view1 attribute:NSLayoutAttributeWidth multiplier:1.5f constant:0]];

        

        //2.固定高度150

        [self.view addConstraint:[NSLayoutConstraint constraintWithItem:view1 attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeWidth multiplier:0.f constant:150.f]];

        

        //3.水平居中 (34只能選其一,因為這兩個限制是沖突的)

        //    [self.view addConstraint:[NSLayoutConstraint constraintWithItem:view1 attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeCenterX multiplier:1 constant:0]];

        

        //4.右邊對齊,保留10間隙

        [self.view addConstraint:[NSLayoutConstraint constraintWithItem:view1 attribute:NSLayoutAttributeTrailing relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeTrailing multiplier:1 constant:-10]];

        

        //5.上下間隔,這里要的效果是保持頂部間隙為100,所以底部間隙要是可變的>=100,試試下面6的效果對比一下

CGFloat hMargin = 100.f;

        [self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|-hmar-[view1]-(>=hmar)-|" options:0 metrics:@{@"hmar":@(hMargin)} views:NSDictionaryOfVariableBindings(view1)]];


        

        //6.上下間隔,頂部間隙可變

        //[self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|-(>=100)-[view1]-(==100)-|" options:0 metrics:nil views:NSDictionaryOfVariableBindings(view1)]];

    }



關于VFL,請參考蘋果官方文檔: Visual Format Language

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

子洲县| 伊金霍洛旗| 大足县| 交口县| 呼和浩特市| 郯城县| 珲春市| 惠安县| 包头市| 呈贡县| 泗水县| 临安市| 仲巴县| 栾川县| 灵寿县| 海南省| 阿克陶县| 西乌| 安徽省| 宜宾市| 五家渠市| 河池市| 巴里| 天津市| 东海县| 大渡口区| 长治市| 张北县| 汝阳县| 简阳市| 驻马店市| 布拖县| 康定县| 柘城县| 大丰市| 玉屏| 扎囊县| 筠连县| 兰西县| 黔南| 揭东县|