Here is the sample code to get the number of taps on a view in Corona SDK.
function button:tap( event ) print( "Number of taps : " ..event.numTaps) end button:addEventListener( "tap" , button ) |
here button is a displayObject like an image or a UI Button and event.numTaps gives the number of Taps on that view.