无法在活动中播放声音(wav)

时间:2011-09-30 15:28:10

标签: iphone objective-c ios audio avfoundation

我需要播放一个简短的声音。这是我写的代码

在我的标题中,我有:

#import <AVFoundation/AVFoundation.h>

@interface AddItemController : UIViewController < ... , AVAudioPlayerDelegate> {
...
AVAudioPlayer *audio;
}

...
@property (nonatomic, retain) IBOutlet AVAudioPlayer *audio;

@end

在.m文件中:

- (void)playSound {
    NSURL *url;
    if (error) {
        url =[NSURL fileURLWithPath:[NSHomeDirectory() stringByAppendingPathComponent:@"Resources/error.wav"]];
    } else {
        url =[NSURL fileURLWithPath:[NSHomeDirectory() stringByAppendingPathComponent:@"Resources/finished.wav"]];
    }
    audio = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:nil];
    audio.delegate = self;
    [audio play];
}

-(IBAction)addItem:(id)sender { 
    if ( ... ) {
        error = true;
        [self playSound];
        return;
    }

    ...

    error = false;
    [self playSound];
}

没有警告也没有问题。所有其他功能都在运作。我听不到任何声音。

确定!我自己找到了解决方案。对不起,如果我打扰你。

希望我的解决方案对某人有用。

- (void)playSound
{
    NSURL *url;

    NSString *path = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"error.aif"];

    if ([[NSFileManager defaultManager] fileExistsAtPath:path]) {
        url = [NSURL fileURLWithPath:path];
        audio = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:nil];
        [audio prepareToPlay];
    }
    [audio play];
}

1 个答案:

答案 0 :(得分:0)

您可能需要查看AudioToolbox框架中的AudioServicesCreateSystemSoundIDAudioServicesPlaySystemSound函数。