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 trialTony Armstrong
2,298 PointsThere appears to be an error in this challenge
The challenge calls for one to create a method to as the action for a button press. The following syntactically-correct code causes an error in the editor:
- (IBAction)buttonPressed:(id)sender
while the following code works, incorrectly:
- (IBAction)buttonPressed
Shouldn't the method take a parameter that represents the sender of the action?
1 Answer
Don Almeida
Courses Plus Student 2,479 PointsIts optional. I think when you set the IBAction you can choose to say None as parameters. Maybe the exercise is looking for a parameter less event handler. (just a thought).