在下面的图片中,您会看到我有一个TableViewCell
UILabel
,其下面是UIButton
。
如果您还没有注意到此问题,我需要UIButton
根据UILabel.numberOfLines
进一步下载
目前我没有代码可以实现这一目标,但我必须将其列出的代码是
//postText.frame = CGRect(x: postText.frame.origin.x, y: postText.frame.origin.y, width: postText.frame.width, height: height)
postText.numberOfLines = 0
postText.lineBreakMode = .ByWordWrapping
postText.sizeToFit()
labelHeightConstraint.constant = postText.frame.height
self.postText?.text = text
感谢任何帮助。