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

Problems with gesture recognizer & child view controller

2013-03-14 Thread Timothy Reaves
In my iOS app, I had a single primary view controller. This controlled three views, one of which had a gesture recognizer. This worked well. However, as the code grew, refactored this into three view controllers, as the primary view controller was doing too much, and it was beginning