无法加载包含标识符的捆绑包中笔尖引用的“”图像

时间:2018-07-09 18:56:04

标签: swift xcode image

当我将图像放入playingwithcontainerviews文件夹时,它们会显示在我的应用程序中。当我将图像放在imagesofcuteanimals文件夹中时,它们不会。我为该文件夹选择了目标。这是错误:无法从标识符中的包中加载从笔尖引用的“”图像。

image of where the pictures of cute animals are located

1 个答案:

答案 0 :(得分:0)

当您加载图像时,蓝色文件夹是参考类型

let img = UIImage(named:"folderName/imageName.jpeg")

OR

if let img = Bundle.main.path(forResource:"imageName",ofType:"jpeg",
 inDirectory:"folderName") { }