16
UIActionSheet iOS Swift를 제시하는 방법은 무엇입니까?
iOS Swift에서 UIActionSheet를 수행하는 방법은 무엇입니까? 다음은 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: { …