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 Build a Simple iPhone App with Swift 2.0 Improving Our User Interface Finishing Up Our Layout

"Did you know" label appears on iPhone simulation but not on iPad.

I have added the 'Did you know label' and have set the leading constraints 20 and bottom one to 120. It appears fine on the iPhone but when I check on iPad. The 'Did you know' label disappears but the fact and the button appear. Any idea why? This is the code for ViewController.swift file:

          import UIKit

class ViewController: UIViewController {

    @IBOutlet weak var FunFactLabel: UILabel!
    let factModel = FactModel()

    override func viewDidLoad() {
        super.viewDidLoad()
        FunFactLabel.text = factModel.getRandomFact()
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }

    @IBAction func showFunFact() {

        FunFactLabel.text = factModel.getRandomFact()

    }

}

I'm pretty sure it's not code related and might be something else. Any help would be appreciated.