如何使用 swift 将 Images.xcassets 中的图像加载到 UIImage 中

Posted

技术标签:

【中文标题】如何使用 swift 将 Images.xcassets 中的图像加载到 UIImage 中【英文标题】:How to load image from Images.xcassets into a UIImage with swift 【发布时间】:2015-08-22 04:06:18 【问题描述】:

我有一个来自Images.xcassets 文件夹的图像,我想使用 swift 以编程方式将其加载到UIImage 中。我怎样才能做到这一点?以前有人做过吗?请给我一些代码示例!

【问题讨论】:

let img : UIImage = UIImage(named: "here is the name of the image from Images.xcassets"); 【参考方案1】:

这是我的代码:

@IBOutlet weak var imageView: UIImageView!

override func viewDidLoad() 
    super.viewDidLoad()
    imageView.image = UIImage(named: "Apple")

我创建了一个图像视图并在其中显示了一个图像。

享受编码!

【讨论】:

【参考方案2】:

您还可以创建一个“标准”颜色 xcassets 项目并通过以下方式加载它:

UIColor(named: "--asset--name--here--")

【讨论】:

以上是关于如何使用 swift 将 Images.xcassets 中的图像加载到 UIImage 中的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 Swift 将文本文件逐行加载到数组中?

如何在swift中使用其他属性将实例作为属性传递

如何使用通知将字符串数据从 swift 传递到目标 c 类

如何使用swift将功能传递给网页?

如何使用文本字段将数字输入数组(swift3)

如何将以下代码从 Swift 2 转换为 Swift 5?