テンプレート
struct AlertUtils {
private static var alertController = UIAlertController()
static func alert(title: String, message: String, view: UIViewController) {
alertController = UIAlertController(title: title,
message: message,
preferredStyle: .alert)
alertController.addAction(UIAlertAction(title: "OK",
style: .default,
handler: nil))
view.present(alertController, animated: true)
}
}
使用方法
AlertUtils.alert(title: "タイトル", message: "メッセージ", view: ViewController())
終わりに
コード貼り付けただけですみません。(特に説明することがない・・・)