มุมมองการแจ้งเตือนอย่างรวดเร็วด้วยตกลงและยกเลิก: แตะปุ่มใด


106

ฉันมีมุมมองการแจ้งเตือนใน Xcode ที่เขียนด้วย Swift และฉันต้องการกำหนดว่าปุ่มใดที่ผู้ใช้เลือก (เป็นกล่องโต้ตอบการยืนยัน) ที่จะไม่ทำอะไรเลยหรือดำเนินการบางอย่าง

ปัจจุบันฉันมี:

@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()
}

ฉันอาจใช้ปุ่มผิดโปรดแก้ไขฉันด้วยเพราะทั้งหมดนี้ใหม่สำหรับฉัน


คำตอบ:


306

หากคุณกำลังใช้ iOS8, คุณควรจะใช้ UIAlertController - UIAlertView จะเลิก

นี่คือตัวอย่างวิธีการใช้งาน:

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)

ดังที่คุณเห็นตัวจัดการบล็อกสำหรับ UIAlertAction จัดการกับการกดปุ่ม มีบทช่วยสอนที่ยอดเยี่ยมอยู่ที่นี่ (แม้ว่าบทช่วยสอนนี้ไม่ได้เขียนโดยใช้ swift): http://hayageek.com/uialertcontroller-example-ios/

อัปเดต 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)

อัปเดต 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)

4
คุณสามารถทำให้การใช้งานของUIAlertActionStyle.Cancelมากกว่า.Defaultในตัวอย่างของคุณ
Tristan Warner-Smith

หากฉันไม่ต้องการดำเนินการใด ๆ ในการดำเนินการยกเลิกฉันจะไม่ส่งคืนอะไรเลย?
Gabriel Rodrigues

แน่นอนว่าในทางเทคนิคฉันไม่ได้ทำอะไรเลยในตัวอย่างนอกจากการบันทึก แต่ถ้าฉันลบบันทึกฉันจะไม่ทำอะไรเลย
Michael Wildermuth

1
มันยอดเยี่ยมมากเมื่อมีการอัปเดตคำตอบสำหรับ Swift เวอร์ชันใหม่กว่า
BlackTigerX

ใครรู้วิธีเพิ่มรหัสการเข้าถึงในการดำเนินการ "ตกลง" และ "ยกเลิก"
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)

4

อัปเดตสำหรับ swift 3:

// การกำหนดฟังก์ชัน:

@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 () ฟังก์ชัน definaiton:

func logoutFun()
{
    print("Logout Successfully...!")
}

3

คุณสามารถทำได้อย่างง่ายดายโดยใช้ 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)

.

ข้อมูลอ้างอิง: iOS Show Alert


0

คุณอาจต้องการที่จะต้องพิจารณาใช้SCLAlertViewทางเลือกสำหรับUIAlertViewหรือUIAlertController

UIAlertController ทำงานบน iOS 8.x ขึ้นไปเท่านั้น SCLAlertView เป็นตัวเลือกที่ดีในการรองรับเวอร์ชันเก่า

githubเพื่อดูรายละเอียด

ตัวอย่าง:

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")
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.