OStack程序员社区-中国程序员成长平台

标题: ios - 获取文件夹名称和图像名称 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 23:40
标题: ios - 获取文件夹名称和图像名称

代码:

NSString *path = [[NSBundle mainBundle] pathForResource:[objDynaMoThumbnailImages objectAtIndex:eg] ofType"jpg" inDirectory:[objDynaMoProductImagePath objectAtIndex:eg]];

它会像这样检索路径

/Users/software/Library/Application Support/iPhone Simulator/6.0/Applications/61AE2605-CE8E-404D-9914-CDA9EBA8027C/DynaMO.app/original/1-1.jpg

从上面的路径我只需要检索“original/1-1.jpg”。 请帮帮我.....



Best Answer-推荐答案


如果资源位于应用程序包的任意子目录中,则可以使用以下代码。它没有假设资源恰好是捆绑路径下的一个子目录。

NSString *path = [[NSBundle mainBundle] pathForResource:...];
NSString *bundlePath = [[NSBundle mainBundle] bundlePath];
NSString *relativePath;
if ([path hasPrefix:bundlePath]) {
    relativePath = [path substringFromIndex[bundlePath length] + 1)];
} else {
    relativePath = path;
}

例如

path = /Users/software/Library/Application Support/.../DynaMO.app/sub/dir/image.jpg

会导致

relativePath = sub/dir/image.jpg

关于ios - 获取文件夹名称和图像名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13225991/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4