gpt4 book ai didi

iphone - 如何使用 NSBundle 获取图像列表

转载 作者:行者123 更新时间:2023-12-03 18:39:36 25 4
gpt4 key购买 nike

我的项目中有图像列表,我必须使用 NSBundle 获取整个列表,我该怎么做

谢谢

最佳答案

这应该可以做到:

 NSLog(@"Images in bundle are:");

NSString *imageExtension = @"png";
NSArray *pngPaths = [[NSBundle mainBundle] pathsForResourcesOfType:imageExtension inDirectory:nil];
for (NSString *filePath in pngPaths)
{
NSString *fileName = [filePath lastPathComponent];
NSLog(@"%@", fileName);
}

只需将 imageExtension 字符串更改为您想要的图像类型即可。

关于iphone - 如何使用 NSBundle 获取图像列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3464777/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com