OKとキャンセルのあるスウィフトアラートビュー:どのボタンがタップされましたか?


105

Swiftで記述されたXcodeにアラートビューがあり、ユーザーが何を実行したり実行したりするためにユーザーが選択したボタン(確認ダイアログ)を決定したいと思います。

現在私は持っています:

@IBAction func pushedRefresh(sender: AnyObject) {
    var refreshAlert = UIAlertView()
    refreshAlert.title = "Refresh?"
    refreshAlert.message = "All data will be lost."
    refreshAlert.addButtonWithTitle("Cancel")
    refreshAlert.addButtonWithTitle("OK")
    refreshAlert.show()
}

私はおそらくボタンを間違って使用しています。これは私にとってすべて新しいので、私を修正してください。


回答:


302

iOS8を使用している場合は、UIAlertControllerを使用する必要があります— UIAlertViewは非推奨です

これを使用する方法の例を次に示します。

var refreshAlert = UIAlertController(title: "Refresh", message: "All data will be lost.", preferredStyle: UIAlertControllerStyle.Alert)

refreshAlert.addAction(UIAlertAction(title: "Ok", style: .Default, handler: { (action: UIAlertAction!) in
  print("Handle Ok logic here")
  }))

refreshAlert.addAction(UIAlertAction(title: "Cancel", style: .Cancel, handler: { (action: UIAlertAction!) in
  print("Handle Cancel Logic here")
  }))

presentViewController(refreshAlert, animated: true, completion: nil)

ご覧のとおり、UIAlertActionのブロックハンドラーはボタンの押下を処理します。素晴らしいチュートリアルがここにあります(このチュートリアルはswiftを使用して書かれていません):http : //hayageek.com/uialertcontroller-example-ios/

Swift 3アップデート:

let refreshAlert = UIAlertController(title: "Refresh", message: "All data will be lost.", preferredStyle: UIAlertControllerStyle.alert)

refreshAlert.addAction(UIAlertAction(title: "Ok", style: .default, handler: { (action: UIAlertAction!) in
    print("Handle Ok logic here")
}))

refreshAlert.addAction(UIAlertAction(title: "Cancel", style: .cancel, handler: { (action: UIAlertAction!) in
    print("Handle Cancel Logic here")
}))

present(refreshAlert, animated: true, completion: nil)

Swift 5アップデート:

let refreshAlert = UIAlertController(title: "Refresh", message: "All data will be lost.", preferredStyle: UIAlertControllerStyle.alert)

refreshAlert.addAction(UIAlertAction(title: "Ok", style: .default, handler: { (action: UIAlertAction!) in
      print("Handle Ok logic here")
}))

refreshAlert.addAction(UIAlertAction(title: "Cancel", style: .cancel, handler: { (action: UIAlertAction!) in
      print("Handle Cancel Logic here")
}))

present(refreshAlert, animated: true, completion: nil)

4
例ではUIAlertActionStyle.Cancelなくを利用でき.Defaultます。
Tristan Warner-Smith

キャンセルアクションで何もしない場合、何も返せませんか?
ガブリエルロドリゲス

もちろん、技術的には、この例ではロギング以外は何もしていません。しかし、ログを削除すると、何もしなくなります。
Michael Wildermuth

1
回答は新しいスウィフトのバージョンに更新されたとき、それはとても素晴らしいことだ
BlackTigerX

「ok」および「cancel」アクションにアクセシビリティIDを追加する方法は誰でも知っています
Kamaldeep singh Bhatia 2017年

18
var refreshAlert = UIAlertController(title: "Log Out", message: "Are You Sure to Log Out ? ", preferredStyle: UIAlertControllerStyle.Alert)

refreshAlert.addAction(UIAlertAction(title: "Confirm", style: .Default, handler: { (action: UIAlertAction!) in
    self.navigationController?.popToRootViewControllerAnimated(true)
}))

refreshAlert.addAction(UIAlertAction(title: "Cancel", style: .Default, handler: { (action: UIAlertAction!) in

    refreshAlert .dismissViewControllerAnimated(true, completion: nil)


}))

presentViewController(refreshAlert, animated: true, completion: nil)

4

Swift 3用に更新:

//関数の定義:

@IBAction func showAlertDialog(_ sender: UIButton) {
        // Declare Alert
        let dialogMessage = UIAlertController(title: "Confirm", message: "Are you sure you want to Logout?", preferredStyle: .alert)

        // Create OK button with action handler
        let ok = UIAlertAction(title: "OK", style: .default, handler: { (action) -> Void in
             print("Ok button click...")
             self.logoutFun()
        })

        // Create Cancel button with action handlder
        let cancel = UIAlertAction(title: "Cancel", style: .cancel) { (action) -> Void in
            print("Cancel button click...")
        }

        //Add OK and Cancel button to dialog message
        dialogMessage.addAction(ok)
        dialogMessage.addAction(cancel)

        // Present dialog message to user
        self.present(dialogMessage, animated: true, completion: nil)
    }

// logoutFun()関数の定義:

func logoutFun()
{
    print("Logout Successfully...!")
}

3

UIAlertControllerを使用して簡単にこれを行うことができます

let alertController = UIAlertController(
       title: "Your title", message: "Your message", preferredStyle: .alert)
let defaultAction = UIAlertAction(
       title: "Close Alert", style: .default, handler: nil)
//you can add custom actions as well 
alertController.addAction(defaultAction)

present(alertController, animated: true, completion: nil)

リファレンス:iOS Show Alert


0

UIAlertViewまたはUIAlertControllerに代わるSCLAlertViewの使用を検討してください

UIAlertControllerはiOS 8.x以降でのみ機能します。SCLAlertViewは古いバージョンをサポートするための優れたオプションです。

詳細を見るにはgithub

例:

let alertView = SCLAlertView()
alertView.addButton("First Button", target:self, selector:Selector("firstButton"))
alertView.addButton("Second Button") {
    print("Second button tapped")
}
alertView.showSuccess("Button View", subTitle: "This alert view has buttons")
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.