-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
touchStartTime = [event timestamp];
}
-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
NSTimeInterval touchTimeDuration = [event timestamp] - touchStartTime;
}
touchStartTime is defined at class level.
Any idea why this won’t recognise the touch events?
Thanks for the help!
Personally, from my experience with the UITableView, I don’t think that you can use the touch events.
You may have to look into other ways of dealing with this. For example, try using the selection as a helper?