Re: Problems with gesture recognizer & child view controller

2013-03-16 Thread Timothy Reaves
This helped enormously. I was not familiar with the resursiveDescription method. Using it, I could see that my view-of-interests parent UIImageView had the userInteraction property set to NO. Changed that, and now I'm getting my events. Thanks much! On Mar 15, 2013, at 11:10 AM, Da

Re: Problems with gesture recognizer & child view controller

2013-03-15 Thread Damian Carrillo
Hi Timothy, What I would try to do is, break in the debugger on viewDidLoad of your primary view controller, and issue the following: po [[self view] recursiveDescription] It will print out the view hierarchy so that you can begin to deduce what the actual problem is. Some mistakes that I seem