16
วิธีการนำเสนอ UIActionSheet iOS Swift
วิธีทำ UIActionSheet ใน iOS Swift นี่คือรหัสของฉันสำหรับการเข้ารหัส UIActionSheet @IBAction func downloadSheet(sender: AnyObject) { let optionMenu = UIAlertController(title: nil, message: "Choose Option", preferredStyle: .actionSheet) let saveAction = UIAlertAction(title: "Save", style: .default, handler: { (alert: UIAlertAction!) -> Void in println("Saved") }) let deleteAction = UIAlertAction(title: "Delete", style: .default, handler: { (alert: UIAlertAction!) -> …