Created
March 11, 2014 18:16
-
-
Save jquave/9491750 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Called when a button is clicked. The view will be automatically dismissed after this call returns | |
| - (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex; | |
| // Called when we cancel a view (eg. the user clicks the Home button). This is not called when the user clicks the cancel button. | |
| // If not defined in the delegate, we simulate a click in the cancel button | |
| - (void)actionSheetCancel:(UIActionSheet *)actionSheet; | |
| - (void)willPresentActionSheet:(UIActionSheet *)actionSheet; // before animation and showing view | |
| - (void)didPresentActionSheet:(UIActionSheet *)actionSheet; // after animation | |
| - (void)actionSheet:(UIActionSheet *)actionSheet willDismissWithButtonIndex:(NSInteger)buttonIndex; // before animation and hiding view | |
| - (void)actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex; // after animation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment