我需要这段代码的帮助,
当在 iPhone 应用程序上按下按钮时,我尝试播放声音,但出现此错误。这是代码
-(IBAction)playSound:(id)sender{
// NSLog(@"play Sound");
SystemSoundID soundID;
NSString *buttonName = [sender currentTitle];
NSString *soundFile = [[NSBundle mainBundle]
pathForResource:buttonName ofType:@"wav"];
AudioServicesCreateSystemSoundID((CFURLRef)[NSURL fileURLWithPath:soundFile], &soundID);
AudioServicesPlaySystemSound(soundID);
[soundFile release];
错误消息说
释放不可用:在自动引用计数模式下不可用
ARC 禁止显式消息“发布”
*将 Objective-C 指针类型“id”转换为 C 指针类型“CFURLRef”(又名“const struct __CFURL ”)需要桥接转换