Zoomtopia is here. Unlock the transformative power of generative AI, helping you connect, collaborate, and Work Happy with AI Companion.
Register nowEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Learn moreKeep your Zoom app up to date to access the latest features.
Download Center Download the Zoom appDownload hi-res images and animations to elevate your next Zoom meeting.
Browse Backgrounds Zoom Virtual BackgroundsEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Zoom AI Companion2022-06-01 10:14 PM
I am using custom UI and enable waiting room feature. How can I capture the joining event when guest join the waiting room?
When the host enters the meeting, it can trigger onWaitingRoomStatusChange, but no event trigger when other guest join in.
Here is my code
extension ClassRoomViewController: MobileRTCMeetingServiceDelegate, MobileRTCVideoServiceDelegate, MobileRTCAudioServiceDelegate, MobileRTCWaitingRoomServiceDelegate {
func onWaitingRoomStatusChange(_ needWaiting: Bool) {
print("trigger onWaitingRoomStatusChange2")
if needWaiting {
print("User joined waiting room.")
// showAlert(with: "User now in waiting room.", and: "User needs to be admitted by host or leave.", action: UIAlertAction(title: "Leave", style: .default, handler: { _ in
// MobileRTC.shared().getMeetingService()?.leaveMeeting(with: .leave)
// }))
} else {
print("User is entering meeting.")
delegate?.userWasAdmittedFromTheWaitingRoom()
}
}
func onWaitingRoomUserJoin(_ userId: UInt) {
print("trigger onWaitingRoomUserJoin user join \(userId)")
}
func onWaitingRoomUserLeft(_ userId: UInt) {
print("trigger onWaitingRoomUserLeft user left \(userId)")
}
}
2022-06-02 12:01 AM
Problem solved. Please ignore