Sha256: 70fa1ae4b72c848c772a28f8322c70959258c50df1bcb0568faae6f4e6beea39
Contents?: true
Size: 575 Bytes
Versions: 54
Compression:
Stored size: 575 Bytes
Contents
class UITouch def to_s phase = case self.phase when UITouchPhaseBegan 'began' when UITouchPhaseMoved 'moved' when UITouchPhaseStationary 'stationary' when UITouchPhaseEnded 'ended' when UITouchPhaseCancelled 'cancelled' end "#{self.class.to_s}(#{self.tapCount} #{self.tapCount == 1 ? 'tap' : 'taps'}, phase: #{phase}, "\ "at #{self.locationInView(self.view).inspect}, @ #{self.timestamp})" end end
Version data entries
54 entries across 54 versions & 1 rubygems