本身要准备一个声音文件,这里是wav的 url
NSString *path = [[NSBundle mainBundle] pathForResource:@"msgcome" ofType:@"wav"]; NSURL *url = [NSURL fileURLWithPath:path]; SystemSoundID soundId; AudioServicesCreateSystemSoundID((CFURLRef)url, &soundId); AudioServicesPlaySystemSound(soundId);