获取bundle中的文件路径

3,382 阅读1分钟

1.获取bundle路径

NSString *bundlePath = [[NSBundle mainBundle] pathForResource:bundleName ofType:@"bundle"];

2.获取bundle下的文件路径

NSString *configPath = [bundlePath stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.json",jsonName]];

这样就获取到bundle下的文件路径了