superView
我想在其右下角布置一个标签,8pt
并10pt
从底部开始
这是我的代码:
let label = UILabel(frame: CGRectZero)
label.text = "text goes here"
label.textColor = UIColor.whiteColor()
label.translatesAutoresizingMaskIntoConstraints = false
label.numberOfLines = 0
label.textAlignment = .Right
label.backgroundColor = UIColor.blackColor()
label.font = UIFont(name: "TheSans-Plain", size: 17)
imageTitleContainer.addSubview(label)
let label_constraint_H:Array = NSLayoutConstraint.constraintsWithVisualFormat("H:|-(>=8)-[label]-(8)-|", options: NSLayoutFormatOptions(rawValue: 0), metrics: nil, views: ["label":label])
let label_constraint_V:Array = NSLayoutConstraint.constraintsWithVisualFormat("V:[label]-(10)-|", options: NSLayoutFormatOptions(rawValue: 0), metrics: nil, views: ["label":label])
imageTitleContainer.addConstraints(label_constraint_H)
imageTitleContainer.addConstraints(label_constraint_V)`
但我要Unable to simultaneously satisfy constraints
进去了console
Will attempt to recover by breaking constraint
<NSLayoutConstraint:0x7ff55acf24c0 H:[UILabel:0x7ff55acf1af0'text goes here']-(8)-| (Names: '|':UIView:0x7ff55acbf430 )>
注意:0x7ff55acbf430
是我imageTitleContainer
的代码
更新:其他约束:
"<NSLayoutConstraint:0x7ff55accdc80 H:|-(0)-[UIView:0x7ff55acbf430] (Names: '|':UIView:0x7ff55acca080 )>",
"<NSLayoutConstraint:0x7ff55accdcd0 H:[UIView:0x7ff55acbf430]-(0)-| (Names: '|':UIView:0x7ff55acca080 )>",
"<NSLayoutConstraint:0x7ff55acf2450 H:|-(>=8)-[UILabel:0x7ff55acf1af0'text goes here'] (Names: '|':UIView:0x7ff55acbf430 )>",
"<NSLayoutConstraint:0x7ff55acf24c0 H:[UILabel:0x7ff55acf1af0'text goes here']-(8)-| (Names: '|':UIView:0x7ff55acbf430 )>",
"<NSLayoutConstraint:0x7ff55adb3830 'UIView-Encapsulated-Layout-Width' H:[UIView:0x7ff55acca080(0)]>"
)