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 View Controllers and Views Creating IBOutlets

I am wondering if anyone knows what i did wrong within this code. If anyone could please help that would be amazing.

Thanks if you can help./Users/Zak/Desktop/Screen Shot 2016-08-01 at 7.38.14 PM.png

ViewController.swift
class ViewController: UIViewController {

    override func viewDidLoad() {
        // Do any additional setup after loading the view, typically from a nib.
        @IBOutlets weak var viewDidLoad: UILabel!
    }

    override func didReceiveMemoryWarning() {
        // Dispose of any resources that can be recreated
@IBOutlets weak var didReceiveMemoryWarning: UILabel!
    }

}

3 Answers

Michael Page
Michael Page
6,529 Points
class ViewController: UIViewController {
    // 1) Notice the @IBOutlet is outside of the viewDidLoad function.
    // 2) The variable name is funFactLabel not viewDidLoad.
    // 3) It's @IBOutlet not @IBOutlets.
    @IBOutlet weak var funFactLabel: UILabel!

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
    }

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

}

Thanks

David Lacedonia
David Lacedonia
13,627 Points

You should declare

@IBOutlet weak var textLabel: UILabel!

outside those methods (and the name of the var is: textLabel and not viewDidLoad)

Thanks