iOS菜鸟学习——声音的播放

来源:互联网 发布:淘宝上怎样制作小视频 编辑:程序博客网 时间:2024/05/16 05:27

iOS发中,播放声音只需要以下代码,需要引入AudioToolbox框架

NSString *path = [NSString stringWithFormat: @"%@/%@",                                      [[NSBundle mainBundle] resourcePath], @"receive_message.caf"];                    NSURL* filePath = [NSURL fileURLWithPath: path isDirectory: NO];SystemSoundID soundID;AudioServicesCreateSystemSoundID((__bridge CFURLRef)filePath, &soundID);      AudioServicesPlaySystemSound(soundID);


原创粉丝点击