I would like to handle a long press on a UITableViewCell to print a "quick access menu".
Did someone already do this?
Particularly the gesture recognize on UITableView?
|
I would like to handle a long press on a Particularly the gesture recognize on |
||||
|
|
|
First add the long press gesture recognizer to the table view:
Then in the gesture handler:
You have to be careful with this so that it doesn't interfere with the user's normal tapping of the cell and also note that handleLongPress may fire multiple times before user lifts their finger. |
|||||||||||||||
|
|
Looks to be more efficient to add the recognizer directly to the cell as shown here: Tap&Hold for TableView Cells, Then and Now (scroll to the example at the bottom) |
|||||||
|
|
I've used Anna-Karenina's answer, and it works almost great with a very serious bug. If you're using sections, long-pressing the section title will give you a wrong result of pressing the first row on that section, I've added a fixed version below (including the filtering of dummy calls based on the gesture state, per Anna-Karenina suggestion).
|
|||
|
|
|
Use the UITouch timestamp property in touchesBegan to launch a timer or stop it when touchesEnded got fired |
|||||||||||
|