Re: UIGestureRecognizer

2011-11-08 Thread Conrad Shultz
On 11/8/11 10:23 AM, Eric E. Dolecki wrote: > Hi all, > > I'd like to be able to drag my finger around on a UIImageView, and without > lifting the finger have a long press trigger a method of mine. I'd prefer > to use UIGestureRecognizer if possible. > > > Right now the longPress triggers only o

Re: UIGestureRecognizer in superview firing

2011-05-03 Thread Roland King
On 03-May-2011, at 12:30 AM, Matt Neuburg wrote: > On Mon, 02 May 2011 16:15:59 +0800, Roland King said: >> I have a UIView subclass which has a number of UIButtons and UISliders on >> it, it's a sort of control panel. I added UIPanGestureRecognizer to it with >> the idea that if you stick you

Re: UIGestureRecognizer in superview firing

2011-05-02 Thread Matt Neuburg
On Mon, 02 May 2011 16:15:59 +0800, Roland King said: >I have a UIView subclass which has a number of UIButtons and UISliders on it, >it's a sort of control panel. I added UIPanGestureRecognizer to it with the >idea that if you stick your finger down outside one of the embedded controls, >you c

Re: UIGestureRecognizer in superview firing

2011-05-02 Thread Heath Borders
I've seen this behavior as well, and I solved it the same way you did. I hope there is a better way. -Heath Borders heath.bord...@gmail.com Twitter: heathborders http://heath-tech.blogspot.com On Mon, May 2, 2011 at 3:15 AM, Roland King wrote: > I have a UIView subclass which has a number of

Re: UIGestureRecognizer and CALayers

2010-08-19 Thread Dave DeLong
Well, seeing as how CALayer does not have an addGestureRecognizer: method, my answer would be "No". Dave On Aug 19, 2010, at 3:01 PM, Philip Mobley wrote: > Are UIGestureRecognizers allowed to be attached to individual CALayers within > a UIView layer hierarchy? I originally posted this to th