0

我使用以下方法从我的应用程序开始 FaceTime 通话:

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

当我调用这个方法时,有没有办法知道 FaceTime 是否已经在使用或者 URL 已经打开?

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

4

1 回答 1

0

所以,我要知道 FaceTime 是否已经在使用/忙于另一个电话是检查我的设备上是否正在播放其他音频,从另一个问题中得到这个想法: 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 在我的应用程序之外播放音频,但它可以很好地实现我必须实现的目标。

于 2016-03-03T07:56:42.797 回答