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 an Interactive Story App with Swift 2 Creating the User Interface Programmatically Page Controllers

Paul M
Paul M
16,370 Points

What does the keyword super do in front of the init?

I was wondering about the tutorial and what the super did to the init and what would happen if the super was not there.

1 Answer

Anthony Mikhail
Anthony Mikhail
9,942 Points

The super keyword notifies the compiler to run the initializer of the super class, so you don't need to rewrite the original initializer implementation.