试图用快速代码计算图像的路径.我得到了这个,我认为在目标C中工作.
[UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/%@.png", [[NSBundle mainBundle] resourcePath], imgName]];
为了获得我的.png图像的路径,我存储在assets.xcassets中.但我现在需要在SWIFT中这样做,而不是客观C.
我需要路径,因为我试图上传我放在CKAsset
iCloud中的图像.
如果您只需要文件的路径(而不是实例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 }