AudioToolbox iPad 问题
我正在将 AudioToolbox 框架实现到我的 iPad 应用程序中,以尝试播放声音效果。这是我的代码:我声明了一个名为“explode”的 SystemSoundID,
NSURL *explodeURL = [NSURL fileURLWithPath:[[NSBundle mainBundle]
pathForResource:@"Explosion" ofType:@"wav"]];
AudioServicesCreateSystemSoundID((__bridge CFURLRef) explodeURL, explode);
[self performSelector:@selector(playsfx) withObject:nil afterDelay:2.0];
-(void)playsfx {
AudioServicesPlaySystemSoundID(explode)
}
但由于某种原因,声音从未播放。
I am implementing AudioToolbox framework into my ipad app to try to play a sound effect. Here is my code: I declared a SystemSoundID called explode
NSURL *explodeURL = [NSURL fileURLWithPath:[[NSBundle mainBundle]
pathForResource:@"Explosion" ofType:@"wav"]];
AudioServicesCreateSystemSoundID((__bridge CFURLRef) explodeURL, explode);
[self performSelector:@selector(playsfx) withObject:nil afterDelay:2.0];
-(void)playsfx {
AudioServicesPlaySystemSoundID(explode)
}
But for some reason the sound never plays.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试传递爆炸的地址
try passing the address of explode