Re: UITextField and UIGestureRecognizers

2011-11-11 Thread Matt Neuburg
On Fri, 11 Nov 2011 11:17:17 +0100, Olivier Palliere said: > >Yeah I know it sounds like this is against the framework, but I eventually got >it reading the doc and poking around the web. Basically the UITextField's >gesture recognizers are reseted to a default value every time it's being >edi

Re: UITextField and UIGestureRecognizers

2011-11-11 Thread Olivier Palliere
HI Guys, Yeah I know it sounds like this is against the framework, but I eventually got it reading the doc and poking around the web. Basically the UITextField's gesture recognizers are reseted to a default value every time it's being edited. So you need to setup your own custom recognizer eve

Re: UITextField and UIGestureRecognizers

2011-11-10 Thread glenn andreas
On Nov 10, 2011, at 9:41 AM, Matt Neuburg wrote: > On Mon, 07 Nov 2011 17:32:46 +0100, Olivier Palliere > said: >> I have a UITextField on a view. I want the user to be able to edit it by >> single tapping on it, but I want to display a popover to chose from a list >> when the user does a lon

Re: UITextField and UIGestureRecognizers

2011-11-10 Thread Matt Neuburg
On Mon, 07 Nov 2011 17:32:46 +0100, Olivier Palliere said: >I have a UITextField on a view. I want the user to be able to edit it by >single tapping on it, but I want to display a popover to chose from a list >when the user does a long press on the UITextfield. > >To do this, I added a LongPres

UITextField and UIGestureRecognizers

2011-11-07 Thread Olivier Palliere
Hi Guys, Working on an iPad app, I'm running into an annoying issue you may have seen already. I have a UITextField on a view. I want the user to be able to edit it by single tapping on it, but I want to display a popover to chose from a list when the user does a long press on the UITextfield.