The simple way to display a UIAlertView, in swift is:
let alert = UIAlertView() alert.title = \"Alert!\" alert.message = \"A wise message\" alert.addButtonWi
Try using this. I work in SpriteKit and I used this code for my in app purchase messages in my game, Chomp'd.
self.view?.window?.rootViewController?.presentViewController(myAlert, animated: true, completion: nil)