除了约束之外,以编程方式创建包含元素的 UITableViewCells 似乎是有效的。或者也许是。每次单元格重新出现时,都会将相同的约束添加到元素中。滚动 tableView 后,我将在 uiLabel 中添加 20 个相同的约束。这是我的子类(浓缩):
class TimeSlotCell: UITableViewCell {
let lblTime = UILabel()
var viewCons = [String:AnyObject]()
var previousCageView:UIView!
var myConstraints = [NSLayoutConstraint]()
func configureCell(row:Int,cageCount:Int) {
lblTime.translatesAutoresizingMaskIntoConstraints = false
self.addSubview(lblTime)
placeConstraint("H:|-5-[time\(row)]", view:"time\(row)")
placeConstraint("V:|-17-[time\(row)]", view: "time\(row)
}
func placeConstraint(format:String, view:String) {
viewCons[view] = lblTime
let navViewConstraint = NSLayoutConstraint.constraintsWithVisualFormat(format, options: [], metrics: nil, views: viewCons)
myConstraints += navViewConstraint
NSLayoutConstraint.activateConstraints(myConstraints)
}
在我的 VC 中,我在 cellForRowAtIndexPath 中调用 configureCell 函数。
有没有办法检查现有约束是否存在?有没有办法确保只能添加我的一个约束?还是有人有更好的解决方案?提前致谢。