自分用のメモです。
ネットで多く用いられている方法を使うとif文の中にアラートを入れられないのですが、以下のコードで試したところうまく行きました。
ViewVontroller.swift
//if分の中に挿入しても問題なく出せる。
let alert = UIAlertView()
alert.title = "Title"
alert.message = "My message"
alert.addButton(withTitle: "Ok")
alert.show()
Go to list of users who liked
More than 5 years have passed since last update.
自分用のメモです。
ネットで多く用いられている方法を使うとif文の中にアラートを入れられないのですが、以下のコードで試したところうまく行きました。
//if分の中に挿入しても問題なく出せる。
let alert = UIAlertView()
alert.title = "Title"
alert.message = "My message"
alert.addButton(withTitle: "Ok")
alert.show()
Register as a new user and use Qiita more conveniently
Go to list of users who liked