声音片段是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];
}
当我点击按钮时,它会产生一个小的“碰撞”噪音,但这不是它应该做的噪音。
由于