美文网首页
iOS UILabel 自动适应文字的长度

iOS UILabel 自动适应文字的长度

作者: 码哥进化 | 来源:发表于2017-12-15 10:13 被阅读31次
        UILabel *dateLabel = [UILabel new];
        dateLabel.textColor = [UIColor whiteColor];
        dateLabel.font = [UIFont systemFontOfSize:16.f];
        dateLabel.text = strDate;
    //设置这句代码可以使控件自适应文字的长度
        [dateLabel setContentHuggingPriority:UILayoutPriorityRequired forAxis:UILayoutConstraintAxisHorizontal];
        [self.view addSubview:dateLabel];
        
        [dateLabel mas_makeConstraints:^(MASConstraintMaker *make) {
            make.top.equalTo(self).with.offset(30);
            make.left.equalTo(self).with.offset(10);
            make.height.equalTo(@19);
        }];
    

    相关文章

      网友评论

          本文标题:iOS UILabel 自动适应文字的长度

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