Hi,
Custom Zoom Meeting UI
I created the custom zoom meeting UI .I used MobileRTCCustomizedUIMeetingDelegate function for access my own view controller. It’s navigated to my view controller But zoom video is not showing in my view controller. Zoom video is working in background.
Please help me to access the zoom meeting full video view in my own view controller.
My Code,
extension ViewController : MobileRTCCustomizedUIMeetingDelegate {
func onDestroyMeetingView() {
print("ViewController onDestroyMeetingView ")
}
func onInitMeetingView() {
print("ViewController onInitMeetingView ")
let controller:ZoomMeetingVC =
self.storyboard!.instantiateViewController(withIdentifier: "ZoomMeetingVC") as!
ZoomMeetingVC
controller.view.frame = self.view.bounds;
self.view.addSubview(controller.view)
self.addChild(controller)
controller.didMove(toParent: self)
}
}