Join Meeting Only
Contents
1. Join Meeting with Meeting Number2. Join Meeting Status
Join Meeting with Meeting Number
Want to join a meeting? The step is simple and easy. First, configure
the meeting parameters paramDict
:
//For Join a meeting with passwordNSDictionary *paramDict = @{kMeetingParam_Username:kSDKUserName,kMeetingParam_MeetingNumber:meetingNo,kMeetingParam_MeetingPassword:pwd,//kMeetingParam_ParticipantID:kParticipantID,//kMeetingParam_WebinarToken:kWebinarToken,//kMeetingParam_NoAudio:@(YES),//kMeetingParam_NoVideo:@(YES),};//For Join a meetingNSDictionary *paramDict = @{kMeetingParam_Username:kSDKUserName,kMeetingParam_MeetingNumber:meetingNo,kMeetingParam_MeetingPassword:pwd,};
When the parameters are set, then we need to prepare the meeting parameters that need to pass to the join meeting function:
MobileRTCMeetError ret = [ms joinMeetingWithDictionary:paramDict];
Join Meeting Status
To know whether the join meeting action is a success or not, or to get
the error message, you need to implement the onMeetingStatusChange
method:
- (void)onMeetingStateChange:(MobileRTCMeetingState)state;{NSLog(@"onMeetingStateChange:%d", state);.....}
Need help?
If you're looking for help, try Developer Support or our Developer Forum. Priority support is also available with Premier Developer Support plans.