NSLayoutConstraints在ios 7上崩溃但在ios 8上没有崩溃

时间:2014-10-28 08:41:58

标签: ios7 swift ios8 xcode6 nslayoutconstraint

我在UIViewController中设置了一些布局约束,在ios8上工作正常。但是一旦我在ios7上运行它,我就会遇到以下错误:

*** Assertion failure in -[UIView layoutSublayersOfLayer:], /SourceCache/UIKit_Sim/UIKit-2935.137/UIView.m:8803

这是我的代码:

class DatacenterIndicatorViewController: UIViewController {

let sideMargins:Float = 12.0   
var dataCenterPollingLabel:UILabel = UILabel()
var dataCenterAlarmLabel:UILabel = UILabel()

//MARK: - Life cycle
override func viewDidLoad() {
    super.viewDidLoad()
    self.view.addSubview(dataCenterPollingLabel)
    self.view.addSubview(dataCenterAlarmLabel)
}

override func viewDidLayoutSubviews() {
    super.viewDidLayoutSubviews()
    self.reloadData()
}

func reloadData() {
    self.setupAlarmLabel()
    self.setupPollingLabel()
    self.generateConstraints()
}

func setupPollingLabel() {
   // some graphic setup
}

func setupAlarmLabel() {
     // some graphic setup
}

func generateConstraints() {
    self.dataCenterPollingLabel.setTranslatesAutoresizingMaskIntoConstraints(false)
    self.dataCenterAlarmLabel.setTranslatesAutoresizingMaskIntoConstraints(false)

    self.view.addConstraint(NSLayoutConstraint(item: dataCenterPollingLabel, attribute: NSLayoutAttribute.CenterY, relatedBy: NSLayoutRelation.Equal, toItem: self.view, attribute: NSLayoutAttribute.CenterY, multiplier: 1.0, constant: 0.0))
    self.view.addConstraint(NSLayoutConstraint(item: dataCenterAlarmLabel, attribute: NSLayoutAttribute.CenterY, relatedBy: NSLayoutRelation.Equal, toItem: self.view, attribute: NSLayoutAttribute.CenterY, multiplier: 1.0, constant: 0.0))
    self.view.addConstraint(NSLayoutConstraint(item: dataCenterAlarmLabel, attribute: NSLayoutAttribute.Width, relatedBy: NSLayoutRelation.Equal, toItem: dataCenterPollingLabel, attribute: NSLayoutAttribute.Width, multiplier: 1.0, constant: 0.0))
    self.view.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat(NSString(format:"H:|-==%f-[dataCenterPollingLabel]-==%f-[dataCenterAlarmLabel]-==%f-|", sideMargins, sideMargins, sideMargins), options: NSLayoutFormatOptions.allZeros, metrics: nil, views: ["dataCenterPollingLabel": dataCenterPollingLabel, "dataCenterAlarmLabel": dataCenterAlarmLabel]))

}
}

我的代码有什么问题?我甚至可以知道在哪里寻找一些错误,一切看起来都很好。

1 个答案:

答案 0 :(得分:12)

我在iOS 7版本中遇到了同样的问题。在viewDidLayoutSubviews方法的末尾调用self.view.layoutIfNeeded()函数而不是super.viewDidLayoutSubviews()函数解决了这个问题。

代码段

override func viewDidLayoutSubviews() {

    // Your statements
    self.reloadData()

    //Write the below statement at the end of the function
    self.view.layoutIfNeeded()

}