我正在使用UIAlertController(),如何在我的消息框中像这样添加标题和图片:

最佳答案

Swift 3.0

使用以下代码

let alertMessage = UIAlertController(title: "My Title", message: "\n\n\n\n\n\n\n\n\n\n\n\n", preferredStyle: .alert)
let action = UIAlertAction(title: "OK", style: .default, handler: nil)
alertMessage .addAction(action)
self.present(alertMessage, animated: true, completion: nil)

let xPosition = self.view.frame.origin.x + 80
let imageView = UIImageView(frame: CGRect(x: xPosition, y: 100, width: 100, height: 100))
imageView.image = #imageLiteral(resourceName: "test.png")
alertMessage.view.addSubview(imageView)

如果没有“确定”按钮,则无法关闭alertMessage.以上
根据需要设置imageView的xPosition和y以及alertMessage的消息。

10-02 04:47