嗨,我是 ios 开发的新手,正在尝试编写一个基本的应用程序。我希望从启动时播放声音,更具体地说是“sound.mp3”,因此我在我的程序中包含了以下代码:
- (void)viewDidLoad
{
[super viewDidLoad];
[UIView animateWithDuration:1.5 animations:^{[self.view setBackgroundColor:[UIColor redColor]];}];
[UIView animateWithDuration:0.2 animations:^{title.alpha = 0.45;}];
//audio
NSString *path = [[NSBundle mainBundle]pathForResource:@"sound" ofType:@"mp3"];
AVAudioPlayer *theAudio = [[AVAudioPlayer alloc]initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
[theAudio play];
}
然而,这导致模拟器和物理设备都没有播放声音。如果我能得到一些帮助,将不胜感激。