如何设置SVProgressHUD Loader的背景图像-iOS Swift

时间:2019-07-03 04:53:33

标签: ios swift xcode spinner loader

我正在使用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开发的新手。任何建议都非常感谢。

1 个答案:

答案 0 :(得分:0)

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

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