let alertController = UIAlertController(title: "\n\n\n\n\n\n\n",message: "\n\n\n\n", preferredStyle: .Alert)
//根据图片大小用\n换行符占取位置
//根据图片大小用\n换行符占取位置
let alertAction = UIAlertAction(title: "确认", style: .Default, handler: nil)
alertController.addAction(alertAction)
self.presentViewController(alertController, animated: true, completion: nil)
//展示图片
let image = UIImage(named: "red.png")
let imageView = UIImageView(image: image)
imageView.frame = CGRect(x: 85, y: 20, width: 100, height: 100)
alertController.view.addSubview(imageView)