alert.addAction(okAction)
self.present(alert, animated: true, completion: nil)
はokActionの定義後にしてください。
let alert = UIAlertController(title: "正解!", message: "おめでとう", preferredStyle: .alert)
let okAction = UIAlertAction(title: "OK", style: .default, handler: { (action) in
alert.dismiss(animated: true, completion: nil)
})
alert.addAction(okAction)
self.present(alert, animated: true, completion: nil)
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。