-1

I want to put this modal window in my app when I press during 5 seconds a specific cell:

enter image description here

How I create this?

tks

Nick
  • 2,361
  • 16
  • 27
eugui
  • 461
  • 1
  • 5
  • 13
  • 1
    Use action Sheet [creating uiactionsheet][1] [1]: http://stackoverflow.com/questions/17223210/creating-uiactionsheet – Vaionixx Jan 08 '14 at 13:03

2 Answers2

1

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.

Rahul Mane
  • 1,005
  • 18
  • 33
Pablosproject
  • 1,374
  • 3
  • 13
  • 33
0

You have to use UIActionSheet for this.

Ashutosh
  • 2,215
  • 14
  • 27