アラートを表示させる方法
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)