美文网首页
Cell xib label自适应高度

Cell xib label自适应高度

作者: 韩微 | 来源:发表于2016-06-13 15:10 被阅读113次

AutoLayoutLabel:

- (void)setBounds:(CGRect)bounds {

[super setBounds:bounds];

if (bounds.size.width != self.preferredMaxLayoutWidth) {

self.preferredMaxLayoutWidth = self.bounds.size.width;

[self setNeedsUpdateConstraints];

}

}

cellHeightForRow:

CGSize size = [cc.contentView systemLayoutSizeFittingSize:UILayoutFittingCompressedSize];

return size.height + 1.0f;

相关文章

网友评论

      本文标题: Cell xib label自适应高度

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