제품 업데이트
Tencent Cloud 오디오/비디오 단말 SDK 재생 업그레이드 및 권한 부여 인증 추가
TRTC 월간 구독 패키지 출시 관련 안내

// 현재 방 퇴장mCloud.exitRoom();
self.trtcCloud = [TRTCCloud sharedInstance];// 현재 방 퇴장[self.trtcCloud exitRoom];
trtc_cloud_ = getTRTCShareInstance();// 현재 방 퇴장trtc_cloud_->exitRoom();
// 방 퇴장 이유를 얻기 위해 onExitRoom 콜백 수신@Overridepublic void onExitRoom(int reason) {if (reason == 0) {Log.d(TAG, "Exit current room by calling the 'exitRoom' api of sdk ...");} else if (reason == 1) {Log.d(TAG, "Kicked out of the current room by server through the restful api...");} else if (reason == 2) {Log.d(TAG, "Current room is dissolved by server through the restful api...");}}
// 방 퇴장 이유를 얻기 위해 onExitRoom 콜백 수신- (void)onExitRoom:(NSInteger)reason {if (reason == 0) {NSLog(@"Exit current room by calling the 'exitRoom' api of sdk ...");} else if (reason == 1) {NSLog(@"Kicked out of the current room by server through the restful api...");} else if (reason == 2) {NSLog(@"Current room is dissolved by server through the restful api...");}}
// 방 퇴장 이유를 얻기 위해 onExitRoom 콜백 수신void onExitRoom(int reason) {if (reason == 0) {printf("Exit current room by calling the 'exitRoom' api of sdk ...");} else if (reason == 1) {printf("Kicked out of the current room by server through the restful api...");} else if (reason == 2) {printf("Current room is dissolved by server through the restful api...");}}
피드백