使用 RongRTCLib 如何确定正在占用音频视频通道

针对集成 IMKit 的用户

if ( [RCKitUtility isCameraHolding] ) { 
   
      //摄像头被占用  

}if ( [RCKitUtility isAudioHolding] ) { 
   
      //音频通道被占用  
}

针对未集成 IMKit 的用户

if ( [[RCCoreClient sharedCoreClient] isCameraHolding] ) { 
   
      //摄像头被占用  

}if ( [[RCCoreClient sharedCoreClient] isAudioHolding] ) { 
   
      //音频通道被占用  
}