首页 > 代码库 > iOS 判断听筒还是扬声器

iOS 判断听筒还是扬声器

//录音之前,先调用下面的语句,询问用户是否可以访问他的 隐私设备麦克风

    [[AVAudioSession sharedInstance] requestRecordPermission:^(BOOL granted)

     {}];



 if ([[[AVAudioSession sharedInstancecategoryisEqualToString:AVAudioSessionCategoryPlayback])

    {

        //切换为听筒播放

        [[AVAudioSession sharedInstancesetCategory:AVAudioSessionCategoryPlayAndRecord error:nil];

        [self showTipInfo:@"切换为听筒模式"];

        

    }

    else

    {

        //切换为扬声器播放

        [[AVAudioSession sharedInstancesetCategory:AVAudioSessionCategoryPlayback error:nil];

        [self showTipInfo:@"切换为扬声器模式"];

    }


本文出自 “雪花飞落满人间” 博客,请务必保留此出处http://smengxiang.blog.51cto.com/11204872/1859973

iOS 判断听筒还是扬声器