0

这段代码有什么问题?我以前用过它,但现在我收到这些警告......

警告:从不兼容的指针类型传递“AudioServicesCreateSystemSoundID”的参数 2

警告:传递 'AudioServicesPlaySystemSound' 的参数 1 从指针生成整数而不进行强制转换

-(void)playfireSound{

    NSString *path = [[NSBundle mainBundle] pathForResource:@"fireSound" ofType:@"wav"];
    NSURL *url = [NSURL fileURLWithPath:path];
    AudioServicesCreateSystemSoundID((CFURLRef) url, &fireSound);   
    AudioServicesPlaySystemSound(fireSound);
}
4

1 回答 1

0

您对 fireSound 变量的声明可能不适合与此 API 一起使用。也许您将它声明为某种对象,而不是作为 int 类型的 SystemSoundID。

于 2010-09-05T03:33:25.897 回答