ViewController.swift
func dialogOKCancel(question: String, text: String) -> Void { let alert = NSAlert() alert.messageText = question alert.informativeText = text alert.alertStyle = NSAlert.Style.informational alert.addButton(withTitle: "OK") alert.runModal() } func test(){ dialogOKCancel(question: "", text: "Confirm Password is not correct.") }
จากโค๊ด function dialogOKCancel() จะ return ค่าออกมาว่า ได้กดปุ่ม OK หรือไม่ ถ้ากดจะ return ค่า true ถ้ากดปุ่ม cancel จะ return ค่า false
จะได้ dialog ดังรูป
แต่หากต้องการแสดงให้รับทราบเฉย ๆ ให้ปรับโค๊ดดังนี้
ViewController.swift
func dialogOKCancel(question: String, text: String) -> Bool { let alert = NSAlert() alert.messageText = question alert.informativeText = text alert.alertStyle = NSAlert.Style.warning alert.addButton(withTitle: "OK") alert.addButton(withTitle: "Cancel") return alert.runModal() == NSApplication.ModalResponse.alertFirstButtonReturn } func test(){ let answer = dialogOKCancel(question: "Do you want to delete this item Ok?", text: "if you delete your inform will lost.") if(answer == true){ print("delete") } }
จะเห็นว่า function dialogOKCancel() จะ return Void
เมื่อทำการรันแล้วจะได้ Dialog ดังรูป