【发布时间】:2016-09-28 15:59:12
【问题描述】:
我有一个UICollectionView。我还有以下在代码中生成的视图:
let messageInputContainerView: UIView = {
let view = UIView()
view.backgroundColor = UIColor.whiteColor()
return view
}()
现在,我想添加messageInputContainerView,使其附在屏幕底部,UICollectionView 就在它的正上方。目前我有以下限制:
view.addSubview(messageInputContainerView)
view.addConstraintsWithFormat("H:|[v0]|", views: messageInputContainerView)
view.addConstraintsWithFormat("V:[v0(48)]", views: messageInputContainerView)
bottomConstraint = NSLayoutConstraint(item: messageInputContainerView, attribute: .Bottom, relatedBy: .Equal, toItem: view, attribute: .Bottom, multiplier: 1, constant: 0)
view.addConstraint(bottomConstraint!)
问题是collectionView现在也接触到了屏幕的底部,并且两个视图重叠了。我尝试使用以下约束来解决这个问题:
let newConstraint = NSLayoutConstraint(item: messageInputContainerView, attribute: .Top, relatedBy: .Equal, toItem: self.collectionView! , attribute: .Bottom, multiplier: 1, constant: 0)
view.addConstraint(newConstraint)
然而这只是通过一堆错误:
016-05-30 19:50:26.153 City[1858:79868] Unable to simultaneously satisfy constraints.
Probably at least one of the constraints in the following list is one you don't want.
Try this:
(1) look at each constraint and try to figure out which you don't expect;
(2) find the code that added the unwanted constraint or constraints and fix it.
(Note: If you're seeing NSAutoresizingMaskLayoutConstraints that you don't understand, refer to the documentation for the UIView property translatesAutoresizingMaskIntoConstraints)
(
"<NSAutoresizingMaskLayoutConstraint:0x7fece04d10e0 h=-&- v=-&- UICollectionView:0x7fece08c0a00.midY == UICollectionViewControllerWrapperView:0x7fece04125f0.midY>",
"<NSAutoresizingMaskLayoutConstraint:0x7fece04d1150 h=-&- v=-&- UICollectionView:0x7fece08c0a00.height == UICollectionViewControllerWrapperView:0x7fece04125f0.height>",
"<NSLayoutConstraint:0x7fece049a460 V:[UIView:0x7fece04992d0(48)]>",
"<NSLayoutConstraint:0x7fece04d7620 UIView:0x7fece04992d0.bottom == UICollectionViewControllerWrapperView:0x7fece04125f0.bottom>",
"<NSLayoutConstraint:0x7fece04a9990 V:[UICollectionView:0x7fece08c0a00]-(0)-[UIView:0x7fece04992d0]>"
)
Will attempt to recover by breaking constraint
<NSLayoutConstraint:0x7fece04a9990 V:[UICollectionView:0x7fece08c0a00]-(0)-[UIView:0x7fece04992d0]>
Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful.
【问题讨论】:
-
如果您支持 iOS9 及更高版本 - 我真的建议您查看
NSLayoutAnchor类,这将使您更容易以编程方式编写约束。 -
直接使用 NSLayoutConstraint 和 stringified 格式编写约束不是一个好主意。尝试使用界面更友好的github.com/robb/Cartography。
标签: ios swift storyboard uicollectionview constraints