Als «uiactionsheet» getaggte Fragen

95
Wie präsentiere ich UIActionSheet iOS Swift?

Wie mache ich UIActionSheet in iOS Swift? Hier ist mein Code zum Codieren von UIActionSheet. @IBAction func downloadSheet(sender: AnyObject) { let optionMenu = UIAlertController(title: nil, message: "Choose Option", preferredStyle: .actionSheet) let saveAction = UIAlertAction(title: "Save", style:...

86
ActionSheet funktioniert nicht iPad

Ich verwende ActionSheet in meiner Anwendung. Auf meinem iPhone funktioniert es, auf dem iPad-Simulator jedoch nicht. Das ist mein Code: @IBAction func dialog(sender: AnyObject) { let optionMenu = UIAlertController(title: nil, message: "Choose Option", preferredStyle: .ActionSheet) let...