Dodanie prostego UIAlertView

108

Jakiego kodu startowego mógłbym użyć do stworzenia prostego UIAlertView z jednym przyciskiem „OK”?

Linuxmint
źródło
Czy chcesz zaczekać z wykonaniem czynności, aż zostanie kliknięty przycisk OK?
sudo rm -rf
1
@sudo rm -rf: Nie, po prostu chcę powiedzieć „Dee dee doo doo” czy coś. Nie musisz nic robić.
Linuxmint

Odpowiedzi:

230

Jeśli chcesz, aby alert był wyświetlany, wykonaj następujące czynności:

    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];

Jeśli chcesz coś zrobić po kliknięciu przycisku, zaimplementuj tę metodę delegata:

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

I upewnij się, że Twój delegat jest zgodny z UIAlertViewDelegateprotokołem:

@interface YourViewController : UIViewController <UIAlertViewDelegate> 
sudo rm -rf
źródło
4
Możesz użyć znaczników, jeśli masz więcej niż 1 widok alertów, aby określić, kto zadzwonił do delegata.
Pnar Sbi Wer
71

Inne odpowiedzi już zawierają informacje dotyczące systemu iOS 7 i starszych, jednak UIAlertVieww iOS 8 są one przestarzałe .

W iOS 8+ powinieneś używać UIAlertController. Jest zamiennikiem obu UIAlertViewi UIActionSheet. Dokumentacja: odwołanie do klasy UIAlertController . I fajny artykuł o NSHipster .

Aby utworzyć prosty widok alertów, możesz wykonać następujące czynności:

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];

Swift 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)

Zwróć uwagę, że ponieważ został dodany w iOS 8, ten kod nie będzie działał na iOS 7 i starszych. Tak więc niestety na razie musimy używać sprawdzania wersji w następujący sposób:

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];
}

Swift 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: zaktualizowano dla Swift 5. Zastąpiono sprawdzanie obecności przestarzałej klasy sprawdzaniem dostępności w Obj-C.

FreeNickname
źródło
1
Nie powinieneś wysyłać kodu, który może działać, ale nie. Zamiast używać MyOwnUtilsClass, po prostu napisz kod, który sprawdza wersję ios.
csharpwinphonexaml
1
@csharpwinphonexaml, nie zgadzam się. To byłaby niepotrzebna komplikacja kodu. Obecna wersja ilustruje użycie UIAlerView / UIAlertController, podczas gdy sprawdzanie wersji systemu nie jest tematem tego pytania. W Swift jest wbudowana jedna linia metody sprawdzania wersji systemu operacyjnego, więc jej użyłem. Objective-C ma kilka metod, ale żadna z nich nie jest elegancka.
FreeNickname
1
Powiedziałem to, bo wiem, że nie każdy jest ekspertem w zrozumieniu każdego fragmentu kodu i wiedzy, jak go zastąpić działającym.
csharpwinphonexaml
10

UIAlertView jest przestarzały w systemie iOS 8. W związku z tym, aby utworzyć alert w systemie iOS 8 i nowszych, zaleca się użycie 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];

Tak to zaimplementowałem.

Szansa270
źródło
9
UIAlertView *alert = [[UIAlertView alloc]
 initWithTitle:@"Title" 
 message:@"Message" 
 delegate:nil //or self
 cancelButtonTitle:@"OK"
 otherButtonTitles:nil];

 [alert show];
 [alert autorelease];
Evan Mulawski
źródło
9
UIAlertView *myAlert = [[UIAlertView alloc] 
                         initWithTitle:@"Title"
                         message:@"Message"
                         delegate:self
                         cancelButtonTitle:@"Cancel"
                         otherButtonTitles:@"Ok",nil];
[myAlert show];
Brynner Ferreira
źródło
9

Jako uzupełnienie dwóch poprzednich odpowiedzi (użytkownika „sudo rm -rf” i „Evan Mulawski”), jeśli nie chcesz nic robić po kliknięciu widoku alertów, możesz go po prostu przydzielić, pokazać i zwolnić. Nie musisz deklarować protokołu delegata.

Di Wu
źródło
3

Oto kompletna metoda, która ma tylko jeden przycisk, „ok”, służący do zamykania 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];
}
MGM
źródło
1

Ta strona pokazuje, jak dodać UIAlertController, jeśli używasz języka Swift.

woda różana
źródło
0

Prosty alert z danymi tablicowymi:

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];
Bhupendrasingh Lohar
źródło
-1

Dla 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)
Nyakiba
źródło