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

Customizing the List of Other Numbers to Be Dialed

buildCallOtherNumberList:callback:

API Description

This API is used to customize the list of a participant's other numbers to be dialed.

Precautions

None

Method Definition

- (void)buildCallOtherNumberList:(HWMAttendeeInfo *)attendee callback:(void(^)(NSArray<HWMCallOtherNumberItem *> *items))callback;

Parameter Description

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

HWMContactPhoneHideTypeNormal

Visible.

HWMContactPhoneHideTypeHidden

Hidden and invisible.

HWMContactPhoneHideTypeAnonymized

Partially hidden and can be dialed.

Return Values

None

Sample Code

- (void)buildCallOtherNumberList:(HWMAttendeeInfo *)attendee callback:(void (^)(NSArray<HWMCallOtherNumberItem *> * _Nonnull))callback {
    HWMCallOtherNumberItem *item = [[HWMCallOtherNumberItem alloc] init];
    item.number = @"number";
    item.callback = ^(HWMAttendeeInfo * _Nonnull attendee) {
    };
    callback(@[item]);
}