为什么声音不播放,代码中没有错误?

时间:2011-03-26 20:12:27

标签: iphone objective-c xcode

声音片段是4秒,wav文件和700kb大小。

这是我使用过的代码,我把所有内容都包含在AVAudioPlayer等框架中。

- (IBAction)twoSound:(id)sender; {
    NSString *path = [[NSBundle mainBundle] pathForResource:@"2b" ofType:@"wav"];
    if (theAudio) [theAudio release];
    theAudio = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
    theAudio.delegate = self;
    [theAudio play];   

}

当我点击按钮时,它会产生一个小的“碰撞”噪音,但这不是它应该做的噪音。

由于

1 个答案:

答案 0 :(得分:0)