如何检查麦克风是否已插入 iPhone?
我在 AVFoundation 框架中使用 AVAudioRecorder。 我想知道如何检查麦克风设备是否已插入(在 iPod Touch 上)?
I'm using AVAudioRecorder in the AVFoundation framework.
I'm wondering how I can check for a microphone device being plugged in (on the iPod Touch)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
iPhone 的设备支持部分应用程序编程指南是您的朋友
Device Support section of the iPhone Application Programming Guide is your friend
BOOL inputAvailable = [[AVAudioSession共享实例] inputIsAvailable];
BOOL inputAvailable = [[AVAudioSession sharedInstance] inputIsAvailable];