Додавання простого UIAlertView


108

Що таке початковий код, який я міг би використовувати для створення простого UIAlertView з однією кнопкою "ОК" на ньому?


Ви хочете зачекати, щоб виконати дію, доки не буде натиснуто кнопку ОК?
sudo rm -rf

1
@sudo rm -rf: Ні, мені просто потрібно сказати "Dee dee doo doo" або щось таке. Ніяких дій не потрібно.
Linuxmint

Відповіді:


230

Коли ви хочете, щоб повідомлення з’являлося, зробіть це:

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"ROFL" 
                                                    message:@"Dee dee doo doo." 
                                                    delegate:self 
                                                    cancelButtonTitle:@"OK" 
                                                    otherButtonTitles:nil];
[alert show];

    // If you're not using ARC, you will need to release the alert view.
    // [alert release];

Якщо ви хочете щось зробити при натисканні кнопки, застосуйте цей метод делегування:

- (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex {
    // the user clicked OK
    if (buttonIndex == 0) {
        // do something here...
    }
}

І переконайтеся, що ваш делегат відповідає UIAlertViewDelegateпротоколу:

@interface YourViewController : UIViewController <UIAlertViewDelegate> 

4
ви можете використовувати теги, якщо у вас більше 1 перегляду сповіщень, щоб визначити, хто викликав делегата.
Pnar Sbi Wer

71

Інші відповіді вже надають інформацію для iOS 7 та новіших версій, проте UIAlertViewв iOS 8 застарілі .

У iOS 8+ ви повинні використовувати UIAlertController. Це заміна і для, UIAlertViewі для UIActionSheet. Документація: Посилання на клас UIAlertController . І приємна стаття про NSHipster .

Для створення простого перегляду сповіщень можна зробити наступне:

UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Title"
                                                                         message:@"Message"
                                                                  preferredStyle:UIAlertControllerStyleAlert];
//We add buttons to the alert controller by creating UIAlertActions:
UIAlertAction *actionOk = [UIAlertAction actionWithTitle:@"Ok"
                                                   style:UIAlertActionStyleDefault
                                                 handler:nil]; //You can use a block here to handle a press on this button
[alertController addAction:actionOk];
[self presentViewController:alertController animated:YES completion:nil];

Швидкий 3/4/5:

let alertController = UIAlertController(title: "Title", message: "Message", preferredStyle: .alert)
//We add buttons to the alert controller by creating UIAlertActions:
let actionOk = UIAlertAction(title: "OK",
    style: .default,
    handler: nil) //You can use a block here to handle a press on this button

alertController.addAction(actionOk)

self.present(alertController, animated: true, completion: nil)

Зауважте, що оскільки він був доданий в iOS 8, цей код не працюватиме на iOS 7 та новіших версіях. Тож, на жаль, поки що ми маємо використовувати перевірки версій на зразок:

NSString *alertTitle = @"Title";
NSString *alertMessage = @"Message";
NSString *alertOkButtonText = @"Ok";

if (@available(iOS 8, *)) {
    UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:alertTitle
                                                        message:alertMessage
                                                       delegate:nil
                                              cancelButtonTitle:nil
                                              otherButtonTitles:alertOkButtonText, nil];
    [alertView show];
}
else {
    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:alertTitle
                                                                             message:alertMessage
                                                                      preferredStyle:UIAlertControllerStyleAlert];
    //We add buttons to the alert controller by creating UIAlertActions:
    UIAlertAction *actionOk = [UIAlertAction actionWithTitle:alertOkButtonText
                                                       style:UIAlertActionStyleDefault
                                                     handler:nil]; //You can use a block here to handle a press on this button
    [alertController addAction:actionOk];
    [self presentViewController:alertController animated:YES completion:nil];
}

Швидкий 3/4/5:

let alertTitle = "Title"
let alertMessage = "Message"
let alertOkButtonText = "Ok"

if #available(iOS 8, *) {
    let alertController = UIAlertController(title: alertTitle, message: alertMessage, preferredStyle: .alert)
    //We add buttons to the alert controller by creating UIAlertActions:
    let actionOk = UIAlertAction(title: alertOkButtonText,
        style: .default,
        handler: nil) //You can use a block here to handle a press on this button

    alertController.addAction(actionOk)
    self.present(alertController, animated: true, completion: nil)
}
else {
    let alertView = UIAlertView(title: alertTitle, message: alertMessage, delegate: nil, cancelButtonTitle: nil, otherButtonTitles: alertOkButtonText)
    alertView.show()
}

UPD: оновлено для Swift 5. Замінено перевірку наявності застарілого класу на перевірку наявності в Obj-C.


1
Ви не повинні розміщувати код, який може працювати, але ні. Замість використання MyOwnUtilsClass просто напишіть код, який перевіряє ios-версію.
csharpwinphonexaml

1
@csharpwinphonexaml, я не згоден. Це було б зайвим ускладненням коду. Поточна версія ілюструє використання UIAlerView / UIAlertController, тоді як перевірка версії системи не є темою цього питання. У Swift є вбудований в один рядок метод перевірки версії ОС, тому я використовував її. У Objective-C є кілька методів, але жоден з них не є елегантним.
FreeNickname

1
Я сказав це, бо знаю, що не кожен досвідчений в розумінні кожного фрагмента коду і знає, як його замінити на робочий.
csharpwinphonexaml

10

UIAlertView застаріло на iOS 8. Тому для створення попередження на iOS 8 і вище рекомендується використовувати UIAlertController:

UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Title" message:@"Alert Message" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *defaultAction = [UIAlertAction actionWithTitle:@"Ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){

    // Enter code here
}];
[alert addAction:defaultAction];

// Present action where needed
[self presentViewController:alert animated:YES completion:nil];

Ось як я це реалізував.


9
UIAlertView *alert = [[UIAlertView alloc]
 initWithTitle:@"Title" 
 message:@"Message" 
 delegate:nil //or self
 cancelButtonTitle:@"OK"
 otherButtonTitles:nil];

 [alert show];
 [alert autorelease];


9

Як доповнення до двох попередніх відповідей (користувачів "sudo rm -rf" та "Evan Mulawski"), якщо ви не хочете нічого робити при натисканні на ваш огляд попередження, ви можете просто виділити, показати та відпустити його. Вам не потрібно декларувати протокол делегата.


3

Ось повний метод, у якого є лише одна кнопка - "ОК", щоб закрити UIAlert:

- (void) myAlert: (NSString*)errorMessage
{
    UIAlertView *myAlert = [[UIAlertView alloc]
                          initWithTitle:errorMessage
                          message:@""
                          delegate:self
                          cancelButtonTitle:nil
                          otherButtonTitles:@"ok", nil];
    myAlert.cancelButtonIndex = -1;
    [myAlert setTag:1000];
    [myAlert show];
}


0

Просте попередження з даними масиву:

NSString *name = [[YourArray objectAtIndex:indexPath.row ]valueForKey:@"Name"];

NSString *msg = [[YourArray objectAtIndex:indexPath.row ]valueForKey:@"message"];

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:name
                                                message:msg
                                               delegate:self
                                      cancelButtonTitle:@"OK"
                                      otherButtonTitles:nil];
[alert show];

-1

Для Swift 3:

let alert = UIAlertController(title: "Alert", message: "Message", preferredStyle: UIAlertControllerStyle.alert)
alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.default, handler: nil))
self.present(alert, animated: true, completion: nil)
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.