Is it possible to present the user with an error message, if you dont have any UIView/UIController?
I have a network framework where I would like to present an error, if some of the http requests is missing some data.
Like a simple UIAlertController or other:
let alert = UIAlertController(title: "Alert", message: "Message", preferredStyle: UIAlertControllerStyle.alert)
alert.addAction(UIAlertAction(title: "Click", style: UIAlertActionStyle.default, handler: nil))
self.present(alert, animated: true, completion: nil)