A customised alert controller which can be used globally. It supports to show multiple alerts over windows.
let alertController = MGAlertController(title: "Title", message: "Message goes here")
alertController.addAction(title: "OK")
alertController.show()
Open up the included Xcode project for an example app.