gpt4 book ai didi

cocoa - initFileURLWithPath :(NSString)] returns null

转载 作者:行者123 更新时间:2023-12-03 17:07:51 24 4
gpt4 key购买 nike

NSString *soundFilePath = [[NSBundle mainBundle] pathForResource:@"Opening" ofType:@"wav"];     
NSURL *fileURL = [[NSURL alloc] initFileURLWithPath: soundFilePath];
NSLog(@"@ajay");
AVAudioPlayer *audioPlayer =
[[AVAudioPlayer alloc] initWithContentsOfURL:fileURL error:nil];

[fileURL release];
[audioPlayer play];

我已经在我的项目中插入了一个wav文件。但是

NSURL *fileURL = [[NSURL alloc] initFileURLWithPath: soundFilePath];

返回 NULL 并控制台打印以下内容:

并且应用程序杀死了...有人可以帮助我吗?

最佳答案

放置

NSLog(@"soundFilePath: %@", soundFilePath);

之后:

NSString *soundFilePath = [[NSBundle mainBundle] pathForResource:@"Opening" ofType:@"wav"];   

打印出来的是什么?如果它是“null”,那么您的包的资源目录中没有名为“Opening.wav”的文件。

确保将该文件添加到您的项目中,并且它会出现在 Xcode 中可执行文件目标的“复制捆绑资源”构建阶段中。

关于cocoa - initFileURLWithPath :(NSString)] returns null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3005658/

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