Double Tap iosTableCell

Anybody know of a way I can detect a double tap on a iOSTableCell?

Thanks…

Sub Action(section As Integer, row As Integer) static click as integer if click = 0 then click = system.ticks else if System.ticks > click and System.Ticks-click <30 then dim delay as double = system.ticks-click System.DebugLog "doubleclick : "+ Row.ToText click = 0 end if end if End Sub

Michel…

Thanks… nice simple idea…

I did make a few improvements:

  1. If the 2nd tap is not fast enough you still need to set “click = 0” to reset it.
  2. I check to make sure the second tap is on the same section and row as the first tap by using 2 more static vars.