Swift 2 AVAudioSession setCategory额外参数'错误' [英] Swift 2 AVAudioSession setCategory extra argument 'error'

查看:93
本文介绍了Swift 2 AVAudioSession setCategory额外参数'错误'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

设置录制音频时,出现错误.

When I set up to record audio, I get an error.

if (session.respondsToSelector("requestRecordPermission:")) {
    AVAudioSession.sharedInstance().requestRecordPermission({(granted: Bool)-> Void in
        if granted {
            print("granted")
            session.setCategory(AVAudioSessionCategoryPlayAndRecord, error: nil)
            session.setActive(true, error: nil)
            self.recorder ()
        } else{
            print("not granted")
        }
   })
}

为什么我有error: nil会收到错误消息?

Why do I get an error for having error: nil?

推荐答案

像这样:

try! session.setCategory(AVAudioSessionCategoryPlayAndRecord)

让我们看看您是否可以根据该模型自己弄清楚如何修复下一行...

Let's see if you can figure out for yourself, from that model, how to fix the next line...

这篇关于Swift 2 AVAudioSession setCategory额外参数'错误'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆