Skip to content

Instantly share code, notes, and snippets.

@jacksonfdam
Created May 25, 2012 21:09
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 jacksonfdam/2790572 to your computer and use it in GitHub Desktop.
Save jacksonfdam/2790572 to your computer and use it in GitHub Desktop.
UIActionSheet to Display Text Only Messages
UIActionSheet *msg = [[[UIActionSheet alloc]
initWithTitle:@"Lorem ipsum dolor...text goes here"
delegate:nil
cancelButtonTitle:nil destructiveButtonTitle:nil
otherButtonTitles:@"Okay", nil]
autorelease];
[msg showInView:window];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment