環境
OS: macOS 10.12.4
Swift: 3.1
Swift: 3.1
アラート(alert)の表示方法について紹介します。
プロジェクトの準備
まず、プロジェクトを下記のリンクのように作成して下さい。コードの実装
手を入れる対象のファイルは「ViewController.swift」になります。この「ViewController.swift」を以下の用に修正します。
黄色(クリーム色)の背景の行が追加するコードになります。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. } override func viewDidAppear(_ animated: Bool) { let Alert: UIAlertController = UIAlertController(title:"タイトル",message:"メッセージ",preferredStyle: .alert) let CloseAction = UIAlertAction(title: "閉じる", style: .default) { action in print("閉じる") } Alert.addAction(CloseAction) present(Alert, animated: true, completion: nil) } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } } |
コードの実行
作成したコードを実行すると下記のように表示されます。「閉じる」をクリックするとコンソールに「閉じる」と表示されます。