📱

【Swift】【iPhone】アラートを表示するサンプルコード

2024/02/12に公開

アラートを表示するサンプルコード

ViewController.swift
    func showAlert() {
        let alert = UIAlertController(title: "ここはタイトルです", message: "ここはメッセージです。", preferredStyle: .alert)
        let ok = UIAlertAction(title: "OK", style: .default, handler: { (action) -> Void in
            // OKボタンをタップしたときの処理
        })
        alert.addAction(ok)
        self.present(alert, animated: true, completion: nil)
    }

preferredStyleで設定できる値

alert
actionSheet
alert actionSheet

UIAlertActionのstyle

default
cancel
destructive
alert actionSheet

Discussion