ios – 将图像添加到UIAlertController

前端之家收集整理的这篇文章主要介绍了ios – 将图像添加到UIAlertController前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是我的警报,完美无缺.我想在警报显示时向警报添加图像,并在SpriteKit中使用SKScene,如果它有所不同的话.
var alertController = UIAlertController(title: "How to Skate",message: "Tap the screen to perform a trick and jump over the obsticles (You can grind on rails) The game will end when you hit a highlighted red,orange or yellow obstacle. That's it! + Image",preferredStyle: UIAlertControllerStyle.Alert)     
alertController.addAction(UIAlertAction(title: "Cool!",style: UIAlertActionStyle.Cancel,handler: nil))
self.view?.window?.rootViewController?.presentViewController(alertController,animated: true,completion: nil)

解决方法

您可以将UIImageView作为子视图添加到UIAlertController.
var imageView = UIImageView(frame: CGRectMake(220,10,40,40))
imageView.image = yourImage
alert.view.addSubview(imageView)

这是你在UIAlertController中的表现:

let alertMessage = UIAlertController(title: "My Title",message: "My Message",preferredStyle: .Alert)

let image = UIImage(named: "myImage")
var action = UIAlertAction(title: "OK",style: .Default,handler: nil)
action.setValue(image,forKey: "image")
alertMessage .addAction(action)

self.presentViewController(alertMessage,completion: nil)
原文链接:https://www.f2er.com/iOS/334564.html

猜你在找的iOS相关文章