Skip to content

Instantly share code, notes, and snippets.

@Clancey
Created May 11, 2011 00:26
Show Gist options
  • Save Clancey/965670 to your computer and use it in GitHub Desktop.
Save Clancey/965670 to your computer and use it in GitHub Desktop.
var recognizerLeft = new UISwipeGestureRecognizer (this, new Selector ("swipeLeft"));
recognizerLeft.Direction = UISwipeGestureRecognizerDirection.Left;
AddGestureRecognizer (recognizerLeft);
[Export("swipeLeft")]
public void swipeLeft (UISwipeGestureRecognizer sender)
{
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment