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 Photo Browser iPhone App Gestures Triple-Tap Gesture Recognizer.

Daniel Barboza
Daniel Barboza
15,664 Points

How 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
Stone Preston
42,016 Points

your 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.