Description
Hi, how can I disable the invite button and also the meeting information such as the meeting ID, passcode, invite link?
I’m using swift and I have the code as follows
let getservice = MobileRTC.shared().getMeetingService()
if let service = getservice {
service.delegate = self
let paramDict = [kMeetingParam_Username:kSDKUserName,kMeetingParam_MeetingNumber:meetingNo, kMeetingParam_MeetingPassword:"xxxx"]
let response = service.joinMeeting(with: paramDict)
print("onJoinMeeting, response: \(response)")
}
extension ViewControllerZoom: MobileRTCMeetingServiceDelegate{
func onMeetingStateChange(_ state: MobileRTCMeetingState) {
print("(state)")
}
}
Thank you in advance for your help