Xcode Swift如何将图像添加到UIAlertController选项?

Jac*_*ack 2 xcode swift uialertcontroller

我想添加图像/图标来UIAlertController喜欢苹果音乐播放器中的对话框

我想要的是彩色/大尺寸图像/图标,如下面的图像,而不是这个问题中的一个。我相信它的ios 11+功能,但是我找不到它的文档。

完全像这样:

在此处输入图片说明

我可以这样做UIAlertController还是应该创建自己的自定义对话框uiviewcontroller

Uma*_*avi 6

 let alert = UIAlertController(title: nil, message: nil, preferredStyle: .actionSheet)            
 alert.modalPresentationStyle = .popover


 let image = UIImage(named: "logoCircle")
 let imageView = UIImageView()
 imageView.image = image
 imageView.frame =  CGRect(x: 25, y: 18, width: 24, height: 24)
 alert.view.addSubview(imageView) 

 let image1 = UIImage(named: "icshare")
  let imageView1 = UIImageView()
  imageView1.image = image1
  alert.view.addSubview(imageView1)
  imageView1.frame = CGRect(x: 25, y: 75, width: 24, height: 24)

 let shareExternal = UIAlertAction(title: NSLocalizedString("Share External Link", comment: ""), style: .default) { action in
        }
 let shareInApp = UIAlertAction(title: "Share within", style: .default)   {
                action in
            } 

  alert.addAction(shareInApp)
  alert.addAction(shareExternal)


    if let presenter = alert.popoverPresentationController
    {
            presenter.sourceView = button
            presenter.sourceRect = button.bounds
    }
    present(alert, animated: true, completion: nil)
Run Code Online (Sandbox Code Playgroud)