web-dev-qa-db-fra.com

Alternative à UIAlertView pour iOS 9?

UAlertView est déconseillé dans iOS 9 et versions ultérieures. Quelle serait une alternative?

UIAlertView *new = [[UIAlertView alloc] initWithTitle:@"Success" message:@"Your InApp Purchases were successfully restored" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[new show];
16
user3138007

Vous pouvez utiliser ce code pour remplacer une vue d'alerte:

UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Title" message:@"Message" preferredStyle:UIAlertControllerStyleAlert];           
[alertController addAction:[UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:nil]];
[self presentViewController:alertController animated:YES completion:nil];

Si vous avez besoin de plusieurs actions, vous pouvez utiliser:

UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Title" message:@"Message" preferredStyle:UIAlertControllerStyleAlert];
[alertController addAction:[UIAlertAction actionWithTitle:@"Button 1" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
    // action 1
}]];
[alertController addAction:[UIAlertAction actionWithTitle:@"Button 2" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
    // action 2
}]];
[alertController addAction:[UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
    [self dismissViewControllerAnimated:YES completion:nil];
}]];           
[self presentViewController:alertController animated:YES completion:nil];
48
Nithinbemitk

Vous obtenez souvent des informations détaillées, y compris la suggestion de remplacement par -cliquer sur le symbole qui affiche la déclaration de classe/méthode.

En cas de UIAlertView vous verrez

"UIAlertView est obsolète. Utilisez plutôt UIAlertController avec un style préféré de UIAlertControllerStyleAlert"

9
vadian
  UIAlertController * alert=   [UIAlertController
                             alertControllerWithTitle:@"Info"
                             message:@"You are using UIAlertController"
                               preferredStyle:UIAlertControllerStyleAlert];

   UIAlertAction* ok = [UIAlertAction
                    actionWithTitle:@"OK"
                    style:UIAlertActionStyleDefault
                    handler:^(UIAlertAction * action)
                    {
                        [alert dismissViewControllerAnimated:YES completion:nil];

                    }];
  UIAlertAction* cancel = [UIAlertAction
                         actionWithTitle:@"Cancel"
                       style:UIAlertActionStyleDefault
                       handler:^(UIAlertAction * action)
                       {
                           [alert dismissViewControllerAnimated:YES completion:nil];
                        }];
 [alert addAction:ok];
 [alert addAction:cancel];

 [self presentViewController:alert animated:YES completion:nil];
3
Mr.Javed Multani

IAlertController existe depuis iOS 8.

1
quark
UIAlertController * alert=   [UIAlertController
                                    alertControllerWithTitle:@"My Title"
                                    message:@"Enter User Credentials"
                                    preferredStyle:UIAlertControllerStyleAlert];

    [self presentViewController:alert animated:YES completion:nil];
1
user3138007

J'ai fait une catégorie pour ça:

+ (void)alertViewWithTitle:(NSString *)aTitle message:(NSString *)aMessage viewController:(UIViewController *) aVC
{
    UIAlertController * alert = [UIAlertController
                                 alertControllerWithTitle:aTitle ? aTitle : @""
                                 message:aMessage
                                 preferredStyle:UIAlertControllerStyleAlert];

    UIViewController *topVC = aVC ? aVC : [UIApplication sharedApplication].keyWindow.rootViewController;
    [topVC presentViewController:alert animated:YES completion:nil];
}

Les paramètres aTitle et aVC sont facultatifs mais aVC doit être utilisé s'il est connu.

PS: évitez le "nouveau" comme nom de variable, c'est un mot réservé, je ne sais pas vraiment s'il compilera.

1
Rémy Blanc

J'ai utilisé "UIAlertController" sur iOS 8 et versions ultérieures. Laisse voir:

UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Success" message:@"Your InApp Purchases were successfully restored" preferredStyle:UIAlertControllerStyleAlert];

Et ajoutez des boutons:

UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){
           //do something when click button
}];

Rappelles toi:

[alertController addAction:okAction];

Montrez-le ensuite:

[self presentViewController:alertController animated:YES completion:nill];

Si vous voulez montrer une actionsheep, vous changez

"preferredStyle:UIAlertControllerStyleActionSheet"
1
AmyNguyen