gpt4 book ai didi

iphone - 我的应用程序在播放声音时崩溃

转载 作者:行者123 更新时间:2023-11-29 03:34:18 24 4
gpt4 key购买 nike

我正在尝试通过单击按钮来播放声音。但是,当我运行该应用程序时,它崩溃了,我得到了 Thread 1 : signal SIGABRT

这是我的代码:

.h文件

#import <AVFoundation/AVFoundation.h>

@interface HljodViewController : UIViewController <AVAudioPlayerDelegate>{

}

-(IBAction)playsound;

.m文件

-(IBAction)playsound {

NSString *path = [[NSBundle mainBundle] pathForResource:@"Geese_4" ofType:@"mp3"];
AVAudioPlayer* theAudio = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
theAudio.numberOfLoops = 1;
[theAudio play];
}

最佳答案

如果您不捕获 NSError,没有人能告诉您如何解决您的问题。我建议您执行以下操作:

NSError *outError = nil;
AVAudioPlayer* theAudio = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:&outError];
if (outError)
{
NSLog(@"%@", [outError localizedDescription]);
}
... // continue on to happy time

关于iphone - 我的应用程序在播放声音时崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19383594/

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