IOS 拖进项目的文件代码获取路径为nil

返比如我拖进工程一个文件m.m4a,使用如下方法获取

NSString *audioPath = [[NSBundle mainBundle] pathForResource:@"m" ofType:@"m4a"];

返回的 audioPath 为nil。


解决方法:点击项目 => TARGETS => Build Phases => Copy Bundle Resource 

然后添加的m.m4a进来。这下获取到的路径就不为nil了。

你可能感兴趣的:(路径,文件)