我正在使用SVProgressHUD加载程序。我想使用加载程序的背景图片。为此,我不知道如何使用它。

我的代码是这样的:

SVProgressHUD.setMinimumSize(CGSize(width: 120, height: 120));
SVProgressHUD.setBackgroundColor(UIColor.darkGray)
SVProgressHUD.setRingNoTextRadius(40)
SVProgressHUD.setForegroundColor(UIColor.white)
SVProgressHUD.show()


我使用了这段代码,但是得到了错误:
SVProgressHUD.setInfoImage("test_icon.png")->错误是:Cannot convert value of type 'String' to expected argument type 'UIImage'

我是IOS开发的新手。任何建议都非常感谢。

最佳答案

您可以通过以下方式使用图片:

SVProgressHUD.setInfoImage(UIImage(named: "your_image_name")!)

10-08 15:42