Skip to content

Instantly share code, notes, and snippets.

View KevinJue's full-sized avatar

Kevin Jue KevinJue

  • Budget-Box
  • Rouen
View GitHub Profile
@GuillaumeJasmin
GuillaumeJasmin / panGesture.m
Created March 26, 2015 09:16
panGesture iOS
/**
* listener for pan gesture
*/
- (void)panListener
{
UIPanGestureRecognizer *panGestureRecognizer = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(panHandler:)];
[self.view addGestureRecognizer:panGestureRecognizer];
}
/**