Show error in alert instead of HUD
This commit is contained in:
parent
d2cff20131
commit
0ad9713fc0
5 changed files with 10 additions and 18 deletions
|
|
@ -10,6 +10,7 @@ import Foundation
|
|||
import SwiftyUserDefaults
|
||||
import KeychainAccess
|
||||
import UIKit
|
||||
import SVProgressHUD
|
||||
|
||||
class Utils {
|
||||
static func removeFileIfExists(atPath path: String) {
|
||||
|
|
@ -65,6 +66,7 @@ class Utils {
|
|||
}
|
||||
|
||||
static func alert(title: String, message: String, controller: UIViewController, completion: (() -> Void)?) {
|
||||
SVProgressHUD.dismiss()
|
||||
let alert = UIAlertController(title: title, message: message, preferredStyle: UIAlertControllerStyle.alert)
|
||||
alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.default, handler: nil))
|
||||
controller.present(alert, animated: true, completion: completion)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue