我正在尝试在 Swift 包中显示图像包。
let image = UIImage(named: "image", in: Bundle.module, compatibleWith: nil)
当我使用png
图像时,此代码有效。但是当我使用svg
同名 (image.svg) 时,图像是nil
.
这就是我定义保存图像的资源文件夹的方式Package.swift
resources: [
.process("Resources"),
]
我正在尝试在 Swift 包中显示图像包。
let image = UIImage(named: "image", in: Bundle.module, compatibleWith: nil)
当我使用png
图像时,此代码有效。但是当我使用svg
同名 (image.svg) 时,图像是nil
.
这就是我定义保存图像的资源文件夹的方式Package.swift
resources: [
.process("Resources"),
]