ScrollerView 佈局

   

    UIScrollView *Scroller = [[UIScrollView alloc] init];

    Scroller.backgroundColor = [UIColor redColor];

    [self.view addSubview:Scroller];

    

    UIView *contentV = [UIView new];

    [Scroller addSubview:contentV];


    UILabel *titleL = [[UILabel alloc]init];

    titleL.text = @"sasasas";

    titleL.textColor = [UIColor  blackColor];

    titleL.font = [UIFont systemFontOfSize:14];

    titleL.textAlignment = NSTextAlignmentLeft;

    [contentV addSubview:titleL];

    _titleL = titleL;

    

    UILabel *noticeLabel = [[UILabel alloc] init];

    noticeLabel.textColor = [UIColor  blackColor];

    noticeLabel.font = [UIFont systemFontOfSize:13];

    noticeLabel.userInteractionEnabled = YES;

    noticeLabel.text = @"無視無視 ";

    [contentV addSubview:noticeLabel];

    _noticeLabel = noticeLabel;


    

    __weak __typeof(&*self)weakSelf = self;

    [Scroller mas_makeConstraints:^(MASConstraintMaker *make) {

        make.edges.equalTo(weakSelf.view);

    }];

    [contentV mas_makeConstraints:^(MASConstraintMaker *make) {

        make.edges.equalTo(Scroller);

        make.width.equalTo(Scroller);

    }];

    [titleL mas_makeConstraints:^(MASConstraintMaker *make) {

        make.left.right.top.equalTo(contentV);

        make.height.equalTo(@40);

    }];

    [noticeLabel mas_makeConstraints:^(MASConstraintMaker *make) {

        make.left.right.equalTo(contentV);

        make.top.equalTo(titleL.mas_bottom).offset(8);

        make.height.equalTo(@40);

    }];

    [contentV mas_makeConstraints:^(MASConstraintMaker *make) {

        make.bottom.equalTo(noticeLabel.mas_bottom);

    }];


發佈了44 篇原創文章 · 獲贊 1 · 訪問量 1萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章