我正在尝试将视图设置为固定在底部。但是,当出现呼叫状态栏时,视图会被按下。
我的约束如下:
let bottomHolder = UIView(frame: CGRect(x: 0, y: screenSize.height-100, width: screenSize.width, height: 100))
bottomHolder.backgroundColor = UIColor.blueColor()
let bottomHolderConstraint = NSLayoutConstraint(item: bottomHolder, attribute: NSLayoutAttribute.Bottom, relatedBy: NSLayoutRelation.Equal, toItem: self.view, attribute: NSLayoutAttribute.Bottom, multiplier: 1, constant: 0)
self.view.addSubview(bottomHolder)
self.view.addConstraint(bottomHolderConstraint)
答案 0 :(得分:0)
检查您的约束条件。如果您具有垂直间距到顶部布局指南,则转到垂直间距到superview(视图)。如果底部空间到底部布局指南,则转到底部空间以进行超视图(查看)。 enter image description here