检测iphone 是不是震动模式 并播放音频文件

来源:互联网 发布:周星驰 电视剧 知乎 编辑:程序博客网 时间:2024/05/01 21:30

检测iphone 是不是震动模式 并播放音频文件

                   if (![AVAudioSessionPortHeadsetMic isEqualToString:[[AVAudioSession sharedInstance] category]] && ![RecorderManager sharedManager].isRecording)                       {                           SystemSoundID soundToPlay;                            NSString *path  = [[NSBundle mainBundle] pathForResource:@"messagein" ofType:@"caf"];                            NSURL *pathURL = [NSURL fileURLWithPath : path];                            AudioServicesCreateSystemSoundID((__bridge CFURLRef) pathURL, &soundToPlay);                            //playback                            AudioServicesPlaySystemSound(soundToPlay);                        }else                        {                        AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);                                  }


0 0
原创粉丝点击