2016-10-18 61 views
0

我正在嘗試爲單元格中的一個視圖添加約束條件。 這是我的代碼:爲單元格中的視圖添加約束的錯誤

let labelView = UIView() 
let labelItem = UILabel() 

labelItem.text = menuList[indexPath.row-1] 
labelItem.textColor = UIColor.white 
labelView.addSubview(labelItem) 

cell.addSubview(labelView) 
labelView.translatesAutoresizingMaskIntoConstraints = false 

NSLayoutConstraint(item: labelView, attribute: NSLayoutAttribute.width, relatedBy: NSLayoutRelation.equal, toItem: cell, attribute: NSLayoutAttribute.notAnAttribute, multiplier: 1, constant: wCell).isActive = true 
NSLayoutConstraint(item: labelView, attribute: NSLayoutAttribute.leading, relatedBy: NSLayoutRelation.equal, toItem: cell, attribute: NSLayoutAttribute.leadingMargin, multiplier: 1.0, constant: 10.0).isActive = true 

但是,它錯誤 「的libC++ abi.dylib:與類型NSException的未捕獲的異常終止」。你可以幫我嗎?非常感謝

回答

相關問題