Skip to content

Instantly share code, notes, and snippets.

@codeincontext
Created April 2, 2013 23:02
Show Gist options
  • Select an option

  • Save codeincontext/5296988 to your computer and use it in GitHub Desktop.

Select an option

Save codeincontext/5296988 to your computer and use it in GitHub Desktop.
<3 modulo
- (void)onTapped:(UITapGestureRecognizer*)gesture {
self.currentPage = (self.currentPage+1) % self.numberOfPages;
[self setNeedsDisplay];
[self sendActionsForControlEvents:UIControlEventValueChanged];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment