如何知道 FaceTime 是否已在使用中

How to know if FaceTime is already in use

我使用以下方式从我的应用开始 FaceTime 通话:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[@"facetime://" stringByAppendingString:appleID]]]

有没有办法知道当我调用此方法时 FaceTime 是否已在使用或 URL 是否已打开?

或者是否可以知道我打开 URL 后何时返回我的应用程序?

所以,为了知道 FaceTime 是否已经在另一个通话中 use/busy,我所做的是检查我的设备上是否正在播放其他音频,从另一个问题中得出这个想法: Detecting active AVAudioSessions on iOS device.

// check if other audio is playing
BOOL isPlayingWithOthers = [[AVAudioSession sharedInstance] isOtherAudioPlaying];

if(isPlayingWithOthers){
    NSLog(@"other audio is playing - FaceTime could be in use");
    //do nothing
}else{
    NSLog(@"no other audio is playing - FaceTime not in use");
}

我想这并不能确保 FaceTime 在我的应用程序外播放音频,但它可以很好地实现我必须实现的目标。