When presenting a UIAlert in SKScene nothing shows up Here is the code
var alertController = UIAlertController(title: "Nothing Selected",
message: "You have selected a picture.",
preferredStyle: UIAlertControllerStyle.alert)
alertController.addAction(UIAlertAction(title: "HI!", style: UIAlertActionStyle.cancel, handler: nil))
self.view?.window?.rootViewController?.present(alertController, animated: true, completion: nil)