美文网首页
iOS检查静音

iOS检查静音

作者: 新生的光明 | 来源:发表于2021-03-01 11:22 被阅读0次

    国外大牛写的检查手机静音的方法-----SoundSwitch

    void SharkfoodSoundMuteNotificationCompletionProc(SystemSoundID  ssID,void* clientData); // sound completion proc
    /** ... **/
    if (AudioServicesCreateSystemSoundID((__bridge CFURLRef)url, &_soundId) == kAudioServicesNoError){
      AudioServicesAddSystemSoundCompletion(self.soundId, CFRunLoopGetMain(), kCFRunLoopDefaultMode, SharkfoodSoundMuteNotificationCompletionProc,(__bridge void *)(self));
    }
    

    链接: https://pan.baidu.com/s/1SvMS2vHJnanR7P_-9S7LEw
    提取码: cjzc

    相关文章

      网友评论

          本文标题:iOS检查静音

          本文链接:https://www.haomeiwen.com/subject/nbaofltx.html