This commit is contained in:
Tina 2017-07-07 18:28:07 -07:00 коммит произвёл GitHub
Родитель bc14489c44
Коммит 81dcba8d27
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -36,11 +36,11 @@ class AnalyticsViewController: UIViewController {
func presentCustomEventAlert() {
let alert = UIAlertController(title: "Event sent",
message: "",
preferredStyle: UIAlertControllerStyle.alert)
preferredStyle: .alert)
// OK Button
alert.addAction(UIAlertAction(title: "OK",
style: UIAlertActionStyle.default,
style: .default,
handler: { (action) in alert.dismiss(animated: true, completion: nil)
}))
self.present(alert, animated:true, completion: nil)