I have the following methods implemented for detecting finger up from trackpad or finger at stationary point. I am not getting how I could determine that fingers have been lifted from trackpad or the finger has stopped moving.
Let me know how could i determine the event for the same.
(void)touchesMovedWithEvent:(NSEvent *)event { NSLog(@"%s",_cmd); }
(void)touchesEndedWithEvent:(NSEvent *)event { NSLog(@"%s",_cmd);
}
- (void)touchesCancelledWithEvent:(NSEvent *)event { NSLog(@"%s",_cmd);
}