Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将一个 mp4 格式的文件复制到我的 XCode 中。命名为 abc.mp4
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"abc" ofType:@"mp4"];
当我记录 filePath 时,它返回 null。
如何访问我的 XCode 资源文件?
您可能尚未选中该框以包含该文件。您展示的是尝试从您的捆绑包中获取文件“abc.mp4”。
查看目标的构建阶段,并确保该文件被复制到包中。