I am developing in Swift 2.3
I have an Utils class enabling me to create UIAlertController easily.
public class Utils { cl
What about
let alert = Utils.buildAlertInfo( withTitle: "Information", andMessage: "John Snow is dying", withHandler: { action in self.go(to: specificViewController) } ) self.presentViewController(alert, animated: false, completion: nil)
?