所以,我创建了一个UIButton
子类,在这个子类中,我想设置一个新的autolayout约束,如下所示:
self.addConstraint(NSLayoutConstraint(item: self.titleLabel, attribute: .bottom, relatedBy: .equal, toItem: self, attribute: .centerY, multiplier: 1.0, constant: -2))
显然,有意义的是,在UIButton
课程中已经存在一个约束,使UIButton
的{{1}}等于centerY
的{{1} }}。结果,我有相互矛盾的约束。
有没有办法让titleLabel
类中设置的约束无效或修改它?