播放声音

来源:互联网 发布:输入汉语拼音软件 编辑:程序博客网 时间:2024/04/27 23:32
NSString *path = [[NSBundle mainBundle] pathForResource:@"crunch" ofType:@"wav"]; 
SystemSoundID soundID;
AudioServicesCreateSystemSoundID((CFURLRef)[NSURL fileURLWithPath:path], &soundID); //分配声音ID
AudioServicesPlaySystemSound (soundID); 
原创粉丝点击