获取应用程序包中的文件夹中的文件路径

时间:2015-11-11 22:03:44

标签: ios swift bundle

我的包具有以下结构:AppName-> DevelopmentAssets-> Images。

我想使用UIImage(contentsOfFile :)方法初始化Images文件中的图像。我用过这个但是不起作用。我怀疑我必须导航到Images文件夹。我该怎么做?

let stringPath = NSBundle.mainBundle().pathForResource("image3", ofType: "jpg")
let image = UIImage(contentsOfFile: stringPath!)!

image3在Images文件夹中。

1 个答案:

答案 0 :(得分:0)

试试这个:

NSBundle.mainBundle().pathForResource("image3", ofType: "jpg", inDirectory: "Images")