I’ve been looking to try and measure the time between touch events (looking at the UITouch class). On the UITouch class there is the timeStamp property that gives this time but it is in seconds.
For the application I am looking at I would like to be able to measure in milliseconds.
Thanks
Just multiply the
timestampby 1000 and you have milliseconds. Thetimestampproperty is defined asNSTimeIntervalwhich is actually a typedef fordouble.