This question already has answers here:
Loading/Downloading image from URL on Swift

(34个答案)


5年前关闭。




我正在通过将图像数据传递给它来快速创建一个UIImage对象。类似于在Objective-C中的操作方式
UIImage imageWithData

但是,我看到错误提示:imageWithData不可用于swift。

Swift的imageWithData的替代方案是什么?

最佳答案

我在UIImage文档中找不到imageWithData类方法,但是您可以使用init(data:)数据方法:

let image:UIImage = UIImage(data:youDataHere);

10-06 13:10