web-dev-qa-db-fra.com

Comment ajouter des actions à UIAlertController et obtenir le résultat des actions (Swift)

Je veux configurer un UIAlertController avec quatre boutons d'action et les titres des boutons à définir sur "coeurs", "pique", "diamants" et "clubs". Quand un bouton est enfoncé, je veux retourner son titre.

En bref, voici mon plan:

// TODO: Create a new alert controller

for i in ["hearts", "spades", "diamonds", "clubs"] {

    // TODO: Add action button to alert controller

    // TODO: Set title of button to i

}

// TODO: return currentTitle() of action button that was clicked
17
Abhi V

Essaye ça:

let alert = UIAlertController(title: "Alert Title", message: "Alert Message", style = .Alert)
for i in ["hearts", "spades", "diamonds", "hearts"] {
    alert.addAction(UIAlertAction(title: i, style: .Default, handler: doSomething)
}
self.presentViewController(alert, animated: true, completion: nil)

Et gérez l'action ici:

func doSomething(action: UIAlertAction) {
    //Use action.title
}

Pour référence future, vous devriez jeter un œil à Documentation d'Apple sur UIAlertControllers

35
Pranav Wadhwa

voici un exemple de code avec deux actions plus et ok-action:

import UIKit

// The UIAlertControllerStyle ActionSheet is used when there are more than one button.
@IBAction func moreActionsButtonPressed(sender: UIButton) {
    let otherAlert = UIAlertController(title: "Multiple Actions", message: "The alert has more than one action which means more than one button.", preferredStyle: UIAlertControllerStyle.ActionSheet)

    let printSomething = UIAlertAction(title: "Print", style: UIAlertActionStyle.Default) { _ in
        print("We can run a block of code." )
    }

    let callFunction = UIAlertAction(title: "Call Function", style: UIAlertActionStyle.Destructive, handler: myHandler)

    let dismiss = UIAlertAction(title: "OK", style: UIAlertActionStyle.Cancel, handler: nil)

    // relate actions to controllers
    otherAlert.addAction(printSomething)
    otherAlert.addAction(callFunction)
    otherAlert.addAction(dismiss)

    presentViewController(otherAlert, animated: true, completion: nil)
}

func myHandler(alert: UIAlertAction){
    print("You tapped: \(alert.title)")
}}

avec i.E. gestionnaire: myHandler vous définissez une fonction, pour lire le résultat du let printSomething .

C'est juste ne façon ;-)

Des questions?

15
Ulli H