Meeting SDK for iOS API Reference
Loading...
Searching...
No Matches
MobileRTCInputUserInfoHandler Class Reference

Interface for handling user input when joining a meeting. More...

#include <MobileRTCMeetingService.h>

Inherits NSObject.

Instance Methods

(BOOL) - isValidEmail:
 Checks whether the input email is a valid email format.
 
(MobileRTCSDKError- inputUserInfo:email:
 Inputs user info.
 
(void) - cancel
 Cancels joining the meeting.
 

Properties

NSString *_Nullable defaultDisplayName
 Gets the default display name.
 
BOOL canModifyDefaultDisplayName
 Checks whether the user can modify the default display name.
 

Detailed Description

Interface for handling user input when joining a meeting.

Definition at line 264 of file MobileRTCMeetingService.h.

Method Documentation

◆ cancel

- (void) cancel

Cancels joining the meeting.

◆ inputUserInfo:email:

- (MobileRTCSDKError) inputUserInfo: (NSString *_Nonnull) name
email: (NSString *_Nonnull) email 

Inputs user info.

Parameters
nameThe display name to input.
emailThe email to input.
Returns
If the function succeeds, it returns MobileRTCSDKError_Success. Otherwise, this function returns an error.

◆ isValidEmail:

- (BOOL) isValidEmail: (NSString *_Nonnull) email

Checks whether the input email is a valid email format.

Parameters
emailThe email must meet the email format requirements. The email input by the logged-in user must be the email.
Returns
YES if the email input is valid. Otherwise, NO.

Property Documentation

◆ canModifyDefaultDisplayName

- (BOOL) canModifyDefaultDisplayName
readnonatomicassign

Checks whether the user can modify the default display name.

Definition at line 274 of file MobileRTCMeetingService.h.

◆ defaultDisplayName

- (NSString* _Nullable) defaultDisplayName
readnonatomiccopy

Gets the default display name.

Definition at line 269 of file MobileRTCMeetingService.h.