美文网首页
Masonry 自适应系列

Masonry 自适应系列

作者: 路边的风景呢 | 来源:发表于2018-12-10 17:18 被阅读14次

这个是自适应Label的宽度

 _titleLabel = [[UILabel alloc]init];

    _titleLabel.textAlignment = NSTextAlignmentCenter;

    _titleLabel.textColor = [UIColor whiteColor];

    _titleLabel.font = [UIFont systemFontOfSize:15];

    _titleLabel.preferredMaxLayoutWidth = 195;

    [_titleLabel setContentHuggingPriority:UILayoutPriorityRequired forAxis:UILayoutConstraintAxisHorizontal];

    [self addSubview:_titleLabel];

    [_titleLabel mas_makeConstraints:^(MASConstraintMaker *make) {

        make.centerX.equalTo(self.mas_centerX);

        make.top.equalTo(self.mas_top);

        make.height.offset(30);

    }];

相关文章

网友评论

      本文标题:Masonry 自适应系列

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