Вы захотите взглянуть на UIActionSheet . Это создаст вид для вас и будет иметь соответствующую анимацию. Очень прост в использовании.
Вам просто нужно реализовать метод UIActionSheetDelegate
Delegate.
@interface MyViewController : UIViewController <UIActionSheetDelegate>
А затем составить лист действий:
UIActionSheet *choice = [[UIActionSheet alloc] initWithTitle:@""
delegate:self
cancelButtonTitle:@"Annuler"
destructiveButtonTitle:nil
otherButtonTitles:@"Prendre une photo",@"Choisir une photo",nil];
[choice showInView:self.view];
И это будет называть:
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
Что похоже на UIAlertView.