无法在TableViewCell中使用自动布局

时间:2015-02-08 19:21:33

标签: ios uitableview swift autolayout

在下面的图片中,您会看到我有一个TableViewCell UILabel,其下面是UIButtonpicture 如果您还没有注意到此问题,我需要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

感谢任何帮助。

0 个答案:

没有答案