Re: UITableView: Delay select recognition

2011-01-27 Thread Phillip Mills
On 2011-01-27, at 1:06 PM, Luke the Hiesterman wrote: > Knowing that it failed would require a subclass. Thanks. I'll keep that in mind. For now, it seems as if application-specific notifications sent from the cells on single and double taps, combined with ignoring the select in my UITableVie

Re: UITableView: Delay select recognition

2011-01-27 Thread Luke the Hiesterman
On Jan 27, 2011, at 8:17 AM, Phillip Mills wrote: > On 2011-01-27, at 10:42 AM, Luke Hiesterman wrote: > >> What is this gesture recognizer you speak of pulling out of the table view? >> Table view does not use gestures for selection, but you're right that even >> if it did, you shouldn't mess

Re: UITableView: Delay select recognition

2011-01-27 Thread Phillip Mills
On 2011-01-27, at 10:42 AM, Luke Hiesterman wrote: > What is this gesture recognizer you speak of pulling out of the table view? > Table view does not use gestures for selection, but you're right that even if > it did, you shouldn't mess with it. For solely educational purposes, I made the (ap

Re: UITableView: Delay select recognition

2011-01-27 Thread Luke Hiesterman
On Jan 27, 2011, at 7:14 AM, Phillip Mills wrote: > I would like to have either an action occur that's linked to a double-tap in > a UITableViewCell subclass *or* the action specified by the > ...didSelectRowAtIndexPath:... method of the owning UITableView, but not > both. I've encountered

UITableView: Delay select recognition

2011-01-27 Thread Phillip Mills
I would like to have either an action occur that's linked to a double-tap in a UITableViewCell subclass *or* the action specified by the ...didSelectRowAtIndexPath:... method of the owning UITableView, but not both. I've encountered some problems with each approach I've tried. - Having the tab