Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Introduction to Auto Layout in iOS Auto Layout in Code Constraints in Code

Mit Sengupta
Mit Sengupta
13,823 Points

What am I doing wrong?

Here's what I wrote :

class MyViewController: UIViewController {

let sampleView = UIView()

override func viewDidLoad() {
    super.viewDidLoad()
    view.addSubview(sampleView)
}

override func viewWillLayoutSubviews() {
    super.viewWillLayoutSubviews()
    sampleView.translatesAutoresizingMaskIntoConstraints = false

    // Add constraints below

    let sampleViewHeightConstraints = NSLayoutConstraint(item: sampleView, attribute: .Height, relatedBy: .Equal,
    toItem: view, attribute: .NotAnAttribute, multiplier: 1.0, constant: 50.0)

    let sampleViewWidthConstraints = NSLayoutConstraint(item: sampleView, attribute: .Width, relatedBy: .Equal,
    toItem: view, attribute: .NotAnAttribute, multiplier: 1.0, constant: 50.0) 


    let sampleViewCenterXConstraints = NSLayoutConstraint(item: sampleView, attribute: .CenterX, relatedBy: .Equal, 
    toItem: view, attribute: .CenterX, multiplier: 1.0, constant: 0.0) 

    let sampleViewCenterYConstraints = NSLayoutConstraint(item: sampleView, attribute: .CenterY, relatedBy: .Equal,
    toItem: view, attribute: .CenterY, multiplier: 1.0, constant: 0.0)



    view.addConstraints([sampleViewHeightConstraints, sampleViewWidthConstraints, sampleViewCenterXConstraints, 
    sampleViewCenterYConstraints])

}

}

2 Answers

Jeroen de Vrind
Jeroen de Vrind
29,772 Points

Depends on what you're trying to achieve. But I assume you want to make the sampleView as wide and as high as the view. You should set the attribute for the width and height constraint not to .NotAnAttribute but to the .Height and .Width attribute of the view. You can give the sampleView a backgroundColor to see it with sampleView.backgroundColor = UIColor.blueColor() for example in viewDidLoad() before you add it as a subView.

Ben Shockley
Ben Shockley
6,094 Points

For the height and width attributes, you need to set the toItem: parameter to nil. That should get you going.