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:
 Check whether the inputed email is a valid email format.
 
(MobileRTCSDKError- inputUserInfo:email:
 Input user info.
 
(void) - cancel
 Cancel to join meeting.
 

Properties

NSString *_Nullable defaultDisplayName
 Get default display name.
 
BOOL canModifyDefaultDisplayName
 Check whether the user can modify default display name.
 

Detailed Description

Interface for handling user input when joining a meeting.

Definition at line 256 of file MobileRTCMeetingService.h.

Method Documentation

◆ cancel

- (void) cancel

Cancel to join meeting.

◆ inputUserInfo:email:

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

Input user info.

Parameters
nameThe display name to input.
emailThe email to input.
Returns
If the function succeeds, it will return MobileRTCSDKError_Success.

◆ isValidEmail:

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

Check whether the inputed 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 means the email input is valid, otherwise not.

Property Documentation

◆ canModifyDefaultDisplayName

- (BOOL) canModifyDefaultDisplayName
readnonatomicassign

Check whether the user can modify default display name.

Definition at line 266 of file MobileRTCMeetingService.h.

◆ defaultDisplayName

- (NSString* _Nullable) defaultDisplayName
readnonatomiccopy

Get default display name.

Definition at line 261 of file MobileRTCMeetingService.h.