Szybki podgląd alertów za pomocą OK i Anuluj: który przycisk został dotknięty?

105

Mam widok alertu w Xcode napisany w Swift i chciałbym określić, który przycisk wybrał użytkownik (jest to okno dialogowe potwierdzenia), aby nic nie robić lub coś wykonać.

Obecnie posiadam:

@IBAction func pushedRefresh(sender: AnyObject) {
    var refreshAlert = UIAlertView()
    refreshAlert.title = "Refresh?"
    refreshAlert.message = "All data will be lost."
    refreshAlert.addButtonWithTitle("Cancel")
    refreshAlert.addButtonWithTitle("OK")
    refreshAlert.show()
}

Prawdopodobnie niewłaściwie używam przycisków, popraw mnie, ponieważ to wszystko jest dla mnie nowe.

B_s
źródło

Odpowiedzi:

303

Jeśli używasz iOS8, powinieneś używać UIAlertController - UIAlertView jest przestarzały .

Oto przykład, jak go używać:

var refreshAlert = UIAlertController(title: "Refresh", message: "All data will be lost.", preferredStyle: UIAlertControllerStyle.Alert)

refreshAlert.addAction(UIAlertAction(title: "Ok", style: .Default, handler: { (action: UIAlertAction!) in
  print("Handle Ok logic here")
  }))

refreshAlert.addAction(UIAlertAction(title: "Cancel", style: .Cancel, handler: { (action: UIAlertAction!) in
  print("Handle Cancel Logic here")
  }))

presentViewController(refreshAlert, animated: true, completion: nil)

Jak widać, programy obsługi bloków dla UIAlertAction obsługują naciśnięcia przycisku. Świetny samouczek jest tutaj (chociaż ten samouczek nie jest napisany przy użyciu swift): http://hayageek.com/uialertcontroller-example-ios/

Aktualizacja Swift 3:

let refreshAlert = UIAlertController(title: "Refresh", message: "All data will be lost.", preferredStyle: UIAlertControllerStyle.alert)

refreshAlert.addAction(UIAlertAction(title: "Ok", style: .default, handler: { (action: UIAlertAction!) in
    print("Handle Ok logic here")
}))

refreshAlert.addAction(UIAlertAction(title: "Cancel", style: .cancel, handler: { (action: UIAlertAction!) in
    print("Handle Cancel Logic here")
}))

present(refreshAlert, animated: true, completion: nil)

Aktualizacja Swift 5:

let refreshAlert = UIAlertController(title: "Refresh", message: "All data will be lost.", preferredStyle: UIAlertControllerStyle.alert)

refreshAlert.addAction(UIAlertAction(title: "Ok", style: .default, handler: { (action: UIAlertAction!) in
      print("Handle Ok logic here")
}))

refreshAlert.addAction(UIAlertAction(title: "Cancel", style: .cancel, handler: { (action: UIAlertAction!) in
      print("Handle Cancel Logic here")
}))

present(refreshAlert, animated: true, completion: nil)
Michael Wildermuth
źródło
4
Mógłbyś wykorzystać UIAlertActionStyle.Cancelraczej niż .Defaultw swoim przykładzie.
Tristan Warner-Smith
Jeśli nie chcę nic robić w akcji Anuluj, nie mogę nic zwrócić?
Gabriel Rodrigues
Oczywiście technicznie nic nie robię w przykładzie poza logowaniem. Ale gdybym usunął dziennik, nic bym nie zrobił.
Michael Wildermuth
1
to wspaniale, gdy odpowiedzi są aktualizowane dla nowszych wersji Swift
BlackTigerX
ktoś wie jak dodać dostępności id do „OK” i „anuluj” działania
Kamaldeep Singh Bhatia
18
var refreshAlert = UIAlertController(title: "Log Out", message: "Are You Sure to Log Out ? ", preferredStyle: UIAlertControllerStyle.Alert)

refreshAlert.addAction(UIAlertAction(title: "Confirm", style: .Default, handler: { (action: UIAlertAction!) in
    self.navigationController?.popToRootViewControllerAnimated(true)
}))

refreshAlert.addAction(UIAlertAction(title: "Cancel", style: .Default, handler: { (action: UIAlertAction!) in

    refreshAlert .dismissViewControllerAnimated(true, completion: nil)


}))

presentViewController(refreshAlert, animated: true, completion: nil)
AG
źródło
4

Zaktualizowano dla Swift 3:

// definicja funkcji:

@IBAction func showAlertDialog(_ sender: UIButton) {
        // Declare Alert
        let dialogMessage = UIAlertController(title: "Confirm", message: "Are you sure you want to Logout?", preferredStyle: .alert)

        // Create OK button with action handler
        let ok = UIAlertAction(title: "OK", style: .default, handler: { (action) -> Void in
             print("Ok button click...")
             self.logoutFun()
        })

        // Create Cancel button with action handlder
        let cancel = UIAlertAction(title: "Cancel", style: .cancel) { (action) -> Void in
            print("Cancel button click...")
        }

        //Add OK and Cancel button to dialog message
        dialogMessage.addAction(ok)
        dialogMessage.addAction(cancel)

        // Present dialog message to user
        self.present(dialogMessage, animated: true, completion: nil)
    }

// logoutFun () definicja funkcji:

func logoutFun()
{
    print("Logout Successfully...!")
}
Kiran jadhav
źródło
3

Możesz to łatwo zrobić za pomocą UIAlertController

let alertController = UIAlertController(
       title: "Your title", message: "Your message", preferredStyle: .alert)
let defaultAction = UIAlertAction(
       title: "Close Alert", style: .default, handler: nil)
//you can add custom actions as well 
alertController.addAction(defaultAction)

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

.

Odniesienie: iOS Show Alert

Shaba Aafreen
źródło
0

Możesz rozważyć użycie SCLAlertView , alternatywy dla UIAlertView lub UIAlertController .

UIAlertController działa tylko na iOS 8.x lub nowszym, SCLAlertView to dobra opcja do obsługi starszej wersji.

github, aby zobaczyć szczegóły

przykład:

let alertView = SCLAlertView()
alertView.addButton("First Button", target:self, selector:Selector("firstButton"))
alertView.addButton("Second Button") {
    print("Second button tapped")
}
alertView.showSuccess("Button View", subTitle: "This alert view has buttons")
Wkrótce Khai
źródło