自定义UIAlertController与图像
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义UIAlertController与图像相关的知识,希望对你有一定的参考价值。
我有一个UIAlertController实现,有两个动作:
let alert = UIAlertController(title: "Add your photo", message: "", preferredStyle: .alert)
let cancelAction = UIAlertAction(title: "Add Later", style: .cancel) { (action) -> Void in }
let uploadAction = UIAlertAction(title: "Upload", style: .default) { (action) -> Void in }
alert.addAction(cancelAction)
alert.addAction(uploadAction)
present(alert, animated: true, completion: nil)
现在,我想在标题下方添加一个图像(位于中心),两个动作仍然如图所示对齐。我试图做的是创建一个UIImageView并将其添加到alertcontroller:
let image = UIImage(named: "myimage.png")
let imageView = UIImageView(image: image!)
imageView.frame = CGRect(x: alert.view.frame.width/2, y: alert.view.frame.height/2, width: 50, height: 50)
alert.view.addSubview(imageView)
但我不能把它放在警报的中心。这是正确的方法吗?或者还有其他一些简单的方法来实现这一目标吗?我怎样才能做到这一点?
答案
使用以下扩展名允许完全自定义UIAlertController: -
extension UIAlertAction{
@NSManaged var image: UIImage?
convenience init(title: String?, style: UIAlertActionStyle,image : UIImage?, handler: ((UIAlertAction) -> Swift.Void)? = nil ){
self.init(title: title, style: style, handler: handler)
self.image = image
}
}
以上是关于自定义UIAlertController与图像的主要内容,如果未能解决你的问题,请参考以下文章
UIAlertController 和 UIAlertControllerStyleActionSheet 自定义
Swift:自定义 UIAlertController 视图
Swift UIAlertController 显示自定义消息