I'm attempting to use the UITapGestureRecognizer object that can be found in Interface Builder. I've dragged a single "UITapGestureRecognizer" from the object library to a single view xib. I then create an IBAction method from this tap gesture, for a simple test, I'm just printing an "NSLog" message to the console once there is a tap on the view. I've run this, and the tap method isn't being called. I right click the view in IB and I noticed that there is a warning "!" on the view's "Outlook Collections" I see:

Outlook Collections
gestureRecognizers - Tap Gesture Recognizer (!)

The warning states: UIView does not have an outlet collection named gestureRecognizers.

What do I need to do to remedy this?

link|improve this question

I went thru the same exercise and it works for me. I am using xCode 4.2 with iOS SDK5. The warning message is there but it still print the NSLog message. – Ken Wong Dec 18 '11 at 4:08
Have any idea what the warning is for or how it can be remedied? – 5StringRyan Dec 18 '11 at 23:23
1  
I suspect the gestureRecognizers is not define as IBOutlet but some how when we drop the gestureRecognizer control in the IB and it knows how to wire it up for us. – Ken Wong Dec 20 '11 at 17:51
feedback

2 Answers

Take a look at this.

Specifically the screen shot of the outlet setup. Hopefully that will help.

link|improve this answer
feedback

Two things to check: Does your view controller (the one that contains the UIView) implement the UIGestureRecognizerDelegate protocol?

Once it implements UIGestureRecognizerDelegate, make sure you've set the gesture recogniser's delegate property to the view controller. I used a storyboard to make the connection.

I do this and I don't get any errors (IOS 5.1, xCode 4.3).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.