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 trialDaniel Barboza
15,664 PointsHow to solve this challenge?
How do I solve this challenge? I tried the code below, but without success
UITapGestureRecognizer* tripleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(test)]; tripleTap.numberOfTapsRequired = 3; [self addGestureRecognizer:tripleTap];
1 Answer
Stone Preston
42,016 Pointsyour code is technically correct. However all the challenge asks you to do is alloc and init it and set the number of taps. It does not ask you to alloc and initWithTarget: action:, then set the taps, then add the gesture recognizer to the view Controller.
so call alloc and init on your variable (just use [[UITapGestureRecognizer alloc] init];) , and then set the number of taps. Thats it.