我正在努力从Parse函数返回UIImage。 我是新手返回函数但是我已经有了Parse,现在我正在尝试创建一个全局函数,我可以在MVVM模式中引用它,而不是在我的应用程序中不断重复代码。
该功能完美无需添加return语句( - > UIImage),我当时无法获得UIImage。
func fetchImage(imageFile : PFFile) -> UIImage
{
var image : UIImage!
imageFile.getDataInBackground { (data, error) in
if error == nil
{
image = UIImage(data: data!)
}
else
{
print(error!)
image = default-img
}
}
return image
}
我确定这是一个我正在制作的简单错误,我似乎无法找到有关向解析函数添加return语句的任何内容。