Use the UIActionSheet.
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"Some Action"
delegate:self
cancelButtonTitle:@"Cancel"
destructiveButtonTitle:@"OK"
otherButtonTitles: nil];
actionSheet.actionSheetStyle = UIActionSheetStyleDefault;
[actionSheet showInView:self.view];
[actionSheet release];
source
share