本帖最后由 冷雨5988 于 2016-1-5 17:09 编辑
在viewcontroller 视频过程中,pop到上一个界面,App概率性的崩溃,出现的概率30次左右会出现一次。
我在返回到上一个页面之前把摄像头都关闭了,也离开房间了:
- (void)actionBack { [[UIApplication sharedApplication] setIdleTimerDisabled:NO]; [AnyChatPlatform VideoCallControl:BRAC_VIDEOCALL_EVENT_FINISH :userId :0 :0 :0 ""]; [AnyChatPlatform UserSpeakControl: -1 : NO]; [AnyChatPlatform UserCameraControl: -1 : NO]; [AnyChatPlatform UserCameraControl:userId :NO]; [AnyChatPlatform UserSpeakControl:userId :NO]; [AnyChatPlatform LeaveRoom: -1]; [AnyChatPlatform Logout]; [self.navigationController popViewControllerAnimated:YES];
} };
|