Skip to content

Instantly share code, notes, and snippets.

@sumardi
Created February 1, 2011 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sumardi/805697 to your computer and use it in GitHub Desktop.
Save sumardi/805697 to your computer and use it in GitHub Desktop.
iPhoneDev - An example of UIActionSheet
UIActionSheet *popupQuery = [[UIActionSheet alloc] initWithTitle:@"What to do?" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:@"Remove" otherButtonTitles:@"Landscape", @"Portrait", nil];
popupQuery.actionSheetStyle = UIActionSheetStyleBlackOpaque;
[popupQuery showInView:self.view];
[popupQuery release];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment