我在xcode中的图像资源中创建了一个名为weather-large
的文件夹,我在其中有一个我想要访问的文件,名为clouds.png
所以我尝试以这种方式访问它:
weatherImageView.image = UIImage(contentsOfFile: "weather-large/clouds")
也是这样尝试的:
weatherImageView.image = UIImage(named: "weather-large/clouds")
但是当我可以在root中访问它时它们都不起作用。我做错了什么?