Re: Intercepting events and touches in UIPickerView subclasses? (or, WTF is going in the UIPickerView's responder chain?)

2009-12-18 Thread David Duncan
On Dec 18, 2009, at 7:32 AM, glenn andreas wrote: > 2) Subclass UIApplication and override sendEvent: - this can get ugly from an > architecture point of view (since you no longer have a nice little reusable > view - you've got to do major surgery on the application itself), and > sendEvent: do

Re: Intercepting events and touches in UIPickerView subclasses? (or, WTF is going in the UIPickerView's responder chain?)

2009-12-18 Thread glenn andreas
On Dec 18, 2009, at 6:00 AM, Sam Krishna wrote: > Hi all, > > So, I'm working on a client project where he wants to have ActionOne for > flicks on the UIPickerView and ActionTwo for non-flick selections. > > When I subclass UIPIckerView, I explicitly follow the pattern of overriding > one of

Intercepting events and touches in UIPickerView subclasses? (or, WTF is going in the UIPickerView's responder chain?)

2009-12-18 Thread Sam Krishna
Hi all, So, I'm working on a client project where he wants to have ActionOne for flicks on the UIPickerView and ActionTwo for non-flick selections. When I subclass UIPIckerView, I explicitly follow the pattern of overriding one of the standard methods for doing this kind of thing, and has worke