Skip to content

Commit

Permalink
Merge 08c98e4 into 24290e4
Browse files Browse the repository at this point in the history
  • Loading branch information
MPiccinato committed Sep 5, 2014
2 parents 24290e4 + 08c98e4 commit 078f59c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/Source/iOS/BlocksAdditions/DTActionSheet.m
Expand Up @@ -121,15 +121,15 @@ - (void)actionSheetCancel:(UIActionSheet *)actionSheet

- (void)willPresentActionSheet:(UIActionSheet *)actionSheet
{
if ([self.actionSheetDelegate respondsToSelector:@selector(actionSheet:willDismissWithButtonIndex:)])
if ([self.actionSheetDelegate respondsToSelector:@selector(willPresentActionSheet:)])
{
[self.actionSheetDelegate willPresentActionSheet:actionSheet];
}
}

- (void)didPresentActionSheet:(UIActionSheet *)actionSheet
{
if ([self.actionSheetDelegate respondsToSelector:@selector(actionSheet:didDismissWithButtonIndex:)])
if ([self.actionSheetDelegate respondsToSelector:@selector(didPresentActionSheet:)])
{
[self.actionSheetDelegate didPresentActionSheet:actionSheet];
}
Expand Down

0 comments on commit 078f59c

Please sign in to comment.