タイトルの通りですが、UIAlertControllerで表示したダイアログを数秒後自動で閉じたいと考えています。
現在下記の通りソースコードを作成し、アラートを出すようにしています。
static func errorDialog() -> Void { let aleart = UIAlertController( title: “エラー”, message: “エラーです”, preferredStyle: .alert ) let cancellAction = UIAlertAction(title: “キャンセル”, style: .default, handler: { action in }) aleart.addAction(cancellAction) let okAction = UIAlertAction(title: “OK”, style: .default, handler: { action in }) aleart.addAction(okAction) self.present(aleart, animated: true, completion: nil) }
正直、teratail内でその方法を検索し、回答に近いものを見つけているのですが
未熟なため、その回答の通りコピペしてみてもうまくいかず困っています。
可能ならば、具体的にどのように入力すれば成功するのか
ご教示いただけると幸いです。
■環境
swift5
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。