码迷,mamicode.com
首页 > 其他好文 > 详细

接收到推送消息时,提示声音

时间:2015-08-05 18:39:43      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:推送   声音   提示   

在需要声音的类里直接粘贴复制:

NSString *path = [[NSBundle mainBundle] pathForResource:@"OrderMusic" ofType:@"wav"];
    if (path) {
        //注册声音到系统
        AudioServicesCreateSystemSoundID((__bridge CFURLRef)[NSURL fileURLWithPath:path],&shake_sound_male_id);
//        AudioServicesPlaySystemSound(shake_sound_male_id);//如果无法再下面播放,可以尝试在此播放
    }
      AudioServicesPlaySystemSound(shake_sound_male_id) //播放注册的声音,(此句代码,可以在本类中的任意位置调用,不限于本方法中)
    
//    AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);   //让手机震动


版权声明:本文为博主原创文章,未经博主允许不得转载。

接收到推送消息时,提示声音

标签:推送   声音   提示   

原文地址:http://blog.csdn.net/mr_banma/article/details/47298591

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!