当前位置:  开发笔记 > IOS > 正文

使用SWIFT以编程方式计算assets.xcassets路径

如何解决《使用SWIFT以编程方式计算assets.xcassets路径》经验,为你挑选了1个好方法。

试图用快速代码计算图像的路径.我得到了这个,我认为在目标C中工作.

[UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/%@.png", [[NSBundle mainBundle] resourcePath], imgName]];

为了获得我的.png图像的路径,我存储在assets.xcassets中.但我现在需要在SWIFT中这样做,而不是客观C.

我需要路径,因为我试图上传我放在CKAssetiCloud中的图像.



1> James Zaghin..:

如果您只需要文件的路径(而不是实例UIImage),这将执行此操作:

斯威夫特2:

if let resourcePath = NSBundle.mainBundle().resourcePath {
    let imgName = "dog.png"
    let path = resourcePath + "/" + imgName
}

迅捷3/4:

if let resourcePath = Bundle.main.resourcePath {
    let imgName = "dog.png"
    let path = resourcePath + "/" + imgName
}


我猜这次投票是因为它没有回答指定的问题.这不会提供对存储在xcassets中的图像文件的访问.这些图像被编译到名为Assets.car的文件中,因此无法通过路径名直接访问.
推荐阅读
有风吹过best
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有