Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
API CHANGE: didDoubleTap
  • Loading branch information
René Sprotte committed Jun 27, 2011
1 parent 6ddbb89 commit 0c212b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MMGridView/Classes/MMGridView.h
Expand Up @@ -41,7 +41,7 @@
@protocol MMGridViewDelegate<NSObject>
@optional
- (void)gridView:(MMGridView *)gridView didSelectCell:(MMGridViewCell *)cell atIndex:(NSUInteger)index;
- (void)gridView:(MMGridView *)gridView didDoubleTappedCell:(MMGridViewCell *)cell atIndex:(NSUInteger)index;
- (void)gridView:(MMGridView *)gridView didDoubleTapCell:(MMGridViewCell *)cell atIndex:(NSUInteger)index;
- (void)gridView:(MMGridView *)gridView changedPageToIndex:(NSUInteger)index;
@end

Expand Down
2 changes: 1 addition & 1 deletion MMGridView/Classes/MMGridView.m
Expand Up @@ -195,7 +195,7 @@ - (void)cellWasSelected:(MMGridViewCell *)cell
- (void)cellWasDoubleTapped:(MMGridViewCell *)cell
{
if (delegate) {
[delegate gridView:self didDoubleTappedCell:cell atIndex:cell.index];
[delegate gridView:self didDoubleTapCell:cell atIndex:cell.index];
}
}

Expand Down

0 comments on commit 0c212b8

Please sign in to comment.