Help Center/ Meeting/ Client SDK Reference/ macOS SDK/ APIs/ UI Customization/ Customizing the List of Other Numbers to Be Dialed
Updated on 2025-04-18 GMT+08:00

Customizing the List of Other Numbers to Be Dialed

buildCallOtherNumberList

API Description

This API is used to customize the list of other numbers to be dialed in the participant list.

Method Definition

1
2
- (void)buildCallOtherNumberList:(HWMAttendeeInfo *)participantInfo
                 completionBlock:(void (^)(NSArray<HWMCallOtherNumberItem *> *items))completionBlock;

Precautions

Subscribe to the HWMParticipantListItemCallOtherNumberHandler delegate during SDK initialization or set the delegate on the target page.

Parameter Description

See Table 3.

Table 1 HWMCallOtherNumberItem description

Parameter

Type

Description

number

NSString *

Number.

hideType

HWMContactPhoneHideType

Number hiding type.

callback

void (^callback)(HWMAttendeeInfo *attendee)

Number click callback.

Table 2 Enumerated values of HWMContactPhoneHideType

Enumerated Value

Description

HWMContactShowPhone

Display the mobile number.

HWMContactHidePhone

Hide the mobile number.

HWMContactSafePhone

Mask the mobile number.

Return Values

None

Sample Code
1
2
3
4
- (void)buildCallOtherNumberList:(HWMAttendeeInfo *)participantInfo
                 completionBlock:(void (^)(NSArray<HWMCallOtherNumberItem *> *items))completionBlock {
    completionBlock(self.callOtherNumberList);
}