我有使用 AVFoundation 的摄像头 View ,如果电话或 Skype 通话处于事件状态,则我们无法使用摄像头。
如何检查 AVFoundation 是否无法打开,然后我需要在不使用相机的情况下打开其他 View 。
如果我会检查这个-
BOOL isPlayingWithOthers = [[AVAudioSession sharedInstance] isOtherAudioPlaying];
那么当任何其他应用程序播放音频时它将不会打开。
有什么建议吗?
CTCallCenter
对象有一个 currentCalls
属性,它是当前调用的 NSSet
。如果有调用,则 currentCalls 属性应为 != nil。
如果您想知道是否有任何调用实际连接,那么您必须遍历当前调用并检查 callState
以确定它是否是 CTCallStateConnected
与否。
#import <CoreTelephony/CTCallCenter.h>
#import <CoreTelephony/CTCall.h>
-(bool)isOnPhoneCall {
/*
Returns YES if the user is currently on a phone call
*/
CTCallCenter *callCenter = [[[CTCallCenter alloc] init] autorelease];
for (CTCall *call in callCenter.currentCalls) {
if (call.callState == CTCallStateConnected) {
return YES;
}
}
return NO;
}
关于ios - 检查是电话还是 Skype 通话处于事件状态 iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33950797/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |