美文网首页
UILabel 的SDAutoLayout约束多行居中设置

UILabel 的SDAutoLayout约束多行居中设置

作者: iOS开发小学生 | 来源:发表于2017-12-14 17:56 被阅读16次

    [self addSubview:self.instructionLabeLabel];

    self.instructionLabeLabel.textAlignment = NSTextAlignmentCenter;

    self.instructionLabeLabel.sd_layout

    .topSpaceToView(self.mailBox, 15)

    .centerXEqualToView(self)

    .widthIs(500)

    .autoHeightRatio(0);

    【widthIs(500)】这里的500设置成父视图的宽或者写成最大宽度

    相关文章

      网友评论

          本文标题:UILabel 的SDAutoLayout约束多行居中设置

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