Action sheet doesn't show Cancel button on iPad
On the iphone, this code shows the cancel button: - (IBAction)buttonPressed { UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"Are you sure?" delegate:self cancelButtonTitle:@"No way!" destructiveButtonTitle:@"Yes, I'm sure!" otherButtonTitles:nil]; [actionSheet showInView:self.view]; [actionSheet release]; } But on the iPad, only the destructive button shows. What's the problem? This is part of the UI design and guidlines . Under 'Action Sheet' they say: Do not include a Cancel button, because people can tap outside the popover to dismiss the action sheet without selecting