我的包具有以下结构:AppName-> DevelopmentAssets-> Images。
我想使用UIImage(contentsOfFile :)方法初始化Images文件中的图像。我用过这个但是不起作用。我怀疑我必须导航到Images文件夹。我该怎么做?
let stringPath = NSBundle.mainBundle().pathForResource("image3", ofType: "jpg")
let image = UIImage(contentsOfFile: stringPath!)!
image3在Images文件夹中。
答案 0 :(得分:0)
试试这个:
NSBundle.mainBundle().pathForResource("image3", ofType: "jpg", inDirectory: "Images")