Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Leticia Rodríguez
iOS Development with Swift Techdegree Student 3,455 PointsCreating IBOutlets Objetive
I'm trying to access the "Creating IBOutlets Objetive" from the previous video and i can't. Also, the progress of the videos that I've already seen do not seem to be keeping.. which could be the problem? Thank you !
class ViewController: UIViewController {
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.
}
}
1 Answer

Elliot Rutherfoord
7,684 PointsHey I think I see where some of the confusion is coming from, I had to re-read the question a few times to get it!
this is the solution:
@IBOutlet weak var textLabel: UILabel!
simply add this to the class and you'll pass the challenge :)