我试图在我的repeatSegment中添加约束。
//Repeat Segment
repeatSegment?.setNeedsDisplay()
repeatSegment?.translatesAutoresizingMaskIntoConstraints = false
let repeatSegmentConstraint1 = NSLayoutConstraint(item: repeatSegment!, attribute: .width, relatedBy: .equal, toItem: nil, attribute: .notAnAttribute, multiplier: 1.00, constant: 190) <<Error here
答案 0 :(得分:0)
从上面的评论中可以看出,这里存在两个问题。
self
无法用作toItem
的参数。在这种情况下,self
是导致错误的UIViewController
。要解决此问题,请改用view
。
从this answer可以看出,约束必须添加到superView
而不是child
,在本例中添加到view
而不是songSlider
1}}。