需求:自己拖进xcode里 一个文件夹。 想要获取文件夹里的东西。
过程: 花了一晚上,找了一大堆资料 都是写什么读取的 写入的 什么沙河一大堆重复的。
感谢:http://www.tuicool.com/articles/Q7ZrMb
步骤:1 创建一个文件夹
2 将该文件夹重命名为s.bundle
3 将s.bundle拖入到xcode中即可
NSString *bundlePath = [[ NSBundle mainBundle ]. resourcePath stringByAppendingPathComponent : @"s.bundle" ];
NSFileManager * fm = [NSFileManager defaultManager];
NSArray* arr=[fm contentsOfDirectoryAtPath:bundlePath error:nil];
NSLog(@"%@",arr);