Questions marquées «uiactionsheet»

95
Comment présenter UIActionSheet iOS Swift?

Comment faire UIActionSheet dans iOS Swift? Voici mon code pour coder UIActionSheet. @IBAction func downloadSheet(sender: AnyObject) { let optionMenu = UIAlertController(title: nil, message: "Choose Option", preferredStyle: .actionSheet) let saveAction = UIAlertAction(title: "Save", style:...

86
ActionSheet ne fonctionne pas sur iPad

J'utilise ActionSheet dans mon application. Sur mon iPhone, cela fonctionne, mais pas sur le simulateur iPad. c'est mon code: @IBAction func dialog(sender: AnyObject) { let optionMenu = UIAlertController(title: nil, message: "Choose Option", preferredStyle: .ActionSheet) let deleteAction =...