Skip to content

Instantly share code, notes, and snippets.

@almostintuitive
Created August 30, 2014 13:16
Show Gist options
  • Save almostintuitive/8237d8425fe9e035c928 to your computer and use it in GitHub Desktop.
Save almostintuitive/8237d8425fe9e035c928 to your computer and use it in GitHub Desktop.
SwipeToPeepCell-2.m
else if (gestureRecognizer.state == UIGestureRecognizerStateEnded) {
if (progress >= 0.7 || touchVelocity.x < -300) {
[self.delegate swipeableCellCompletedSwiping:self];
} else {
[self.delegate swipeableCellCancelledSwiping:self];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment