2011-04-07 9 views

Respuesta

9

Utilice un 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]; 
Cuestiones relacionadas