我想获得一个UILabel的宽度,该UILabel作为子视图添加到自定义TableView Cell中。我正在使用的TableView类在下面列出:
import UIKit
class customTableViewCell: UITableViewCell {
let customLabel: UILabel = {
let label = UILabel()
label.translateAutoConstraints = false
label.textAlignment = .left
return label
}()
override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
contentView.addSubview(customLabel)
customLabel.topAnchor.constraint(equal: contentView.topAnchor).isActive = true
customLabel.leftAnchor.constraint(equal: contentView.leftAnchor, constant: 10).isActive = true
customLabel.rightAnchor.constraint(equal: contentView.rightAnchor, constant: (contentView.frame.size.width/2)-10-customLabel.frame.size.width).isActive = true
}
required init?(coder aDecoder: NSCoder) {
fatalError(“init(coder:) has not been implemented”)
}
}
但是,从上面的代码中,当我为customLabel UILabel分配了rightAnchor约束时,Xcode并未返回我正在寻找的UILabel的正确宽度。
我知道我只为UILabel指定了顶部和左侧约束。我也知道UILabel默认具有固有的布局,它可以根据UILabel的内容确定所需的高度。但是,我想知道是否没有将上面代码中定义的customUILabel的numberOfLines设置为0(即我只希望UILabel中的文本仅占据一行)。我可以在截断文本之前获取customUILabel的宽度吗?
让我进一步解释一下,如果我的customLabel有很多文本,它将占据屏幕的整个宽度,然后被截断。但是,如果它不包含很多文本,则其宽度将小于屏幕的宽度。这正是我有兴趣获得的,用于在其中显示小文本的UILabel的宽度吗?
关于, 沙迪。
答案 0 :(得分:0)
您需要
self.contentView.rightAnchor.constraintGreaterThanOrEqualToAnchor(customLabel.rightAnchor, constant: 8.0).active = true
然后在内部打印宽度
override func layoutSubviews() {
super.layoutSubviews()
print(customLabel.frame.width)
}
在约束计算中不要使用框架
(contentView.frame.size.width/2)-10-customLabel.frame.size.width
尚未计算的内部单元格init