我试图让汽车项目在路上行驶
如果我的车越过公路车道,我想发出警告信号 如果汽车在其他车道上,如何知道汽车的位置和播放音频。
对我来说很紧迫
谢谢
答案 0 :(得分:2)
您可以使用此代码播放声音:
-(void)playSomeSound
{
NSURL *soundFilePath = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"sound" ofType:@"mp3"]];
AVAudioPlayer *sound = [[AVAudioPlayer alloc] initWithContentsOfURL:soundFilePath error:nil];
[sound play];
[sound release];
}
只要你的车越过车道,就打电话给[self playSomeSound]。其他形式的声音也起作用,但不是全部,所以要小心。