Skip to content

Commit

Permalink
Update README fixes #47
Browse files Browse the repository at this point in the history
  • Loading branch information
zhxnlai committed Jun 4, 2015
1 parent 2b326a2 commit 5c3ca69
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,18 +54,9 @@ self.swipeableView.delegate = self;

#pragma mark - ZLSwipeableViewDelegate
- (void)swipeableView:(ZLSwipeableView *)swipeableView
didSwipeUp:(UIView *)view {
NSLog(@"did swipe up");
}
- (void)swipeableView:(ZLSwipeableView *)swipeableView
didSwipeDown:(UIView *)view {
NSLog(@"did swipe down");
}
- (void)swipeableView:(ZLSwipeableView *)swipeableView didSwipeLeft:(UIView *)view {
NSLog(@"did swipe left");
}
- (void)swipeableView:(ZLSwipeableView *)swipeableView didSwipeRight:(UIView *)view {
NSLog(@"did swipe right");
didSwipeView:(UIView *)view
inDirection:(ZLSwipeableViewDirection)direction {
NSLog(@"did swipe in direction: %zd", direction);
}
- (void)swipeableView:(ZLSwipeableView *)swipeableView didCancelSwipe:(UIView *)view {
NSLog(@"did cancel swipe");
Expand Down

0 comments on commit 5c3ca69

Please sign in to comment.