SwiftUIの基本を身につけたい方はこちら

【Xcode/Swift】UIAlertViewの使い方

アラートを表示させる方法

let alert = UIAlertController(title: "タイトル", message: "メッセージ", preferredStyle: .alert)
let cancelAction = UIAlertAction(title: "キャンセル", style: .cancel) { _ in
    print("キャンセルが選択されました。")
}
alert.addAction(cancelAction)
let okAction = UIAlertAction(title: "OK", style: .default) { (UIAlertAction) in
    print("OKが選択されました。")
}
alert.addAction(okAction)
present(alert, animated: true)

評価