I want to put this modal window in my app when I press during 5 seconds a specific cell:
How I create this?
tks
I want to put this modal window in my app when I press during 5 seconds a specific cell:
How I create this?
tks
You must use UIActionSheet
for these task (see here).
To launch it after a few seconds on pressing on a cell you can implement a control in table view's delegate didSeletcRow:atIndexPath:
. Or instead you can create your own gesture recognizer
attached to every cell in your tableview
.