Customizing the Text for a Specific Scenario
customLanguageInfosForScene:
API Description
This API is used to customize the text for a specific scenario.
Precautions
None
Method Definition
1
|
- (NSArray<HWMUILanguageInfo *> *)customLanguageInfosForScene:(HWMCustomUITextScene)scene; |
Parameter Description
Enumerated Value |
Description |
---|---|
HWMCustomUITextSceneCloudRecordFinishedAlert |
Text in the dialog box displayed when cloud recording ends. |
HWMCustomUITextSceneCloudRecordFinishedInMeetingAlert |
Text in the dialog box displayed when cloud recording ends in an ongoing meeting. |
HWMCustomUITextSceneLeaveOrEndConfPopupWindow |
Title of the dialog box for leaving or ending a meeting. |
HWMCustomUITextSceneCloudRecordMenuTitle |
Cloud recording title in the recording pop-up menu. |
HWMCustomUITextSceneMainWindowCloudRecordDes |
Cloud recording description in the main window. |
Parameter |
Type |
Description |
---|---|---|
languageCode |
NSString * |
Language code. |
customContent |
NSString * |
Custom content. |
Return Values
None
1 2 3 4 5 6 |
/// Customize the text for a scenario. - (NSArray<HWMUILanguageInfo *> *)customLanguageInfosForScene:(HWMCustomUITextScene)scene { HWMUILanguageInfo *cn = [HWMUILanguageInfo infoWithCode:@"cn" content:@"Custom"]; HWMUILanguageInfo *en = [HWMUILanguageInfo infoWithCode:@"en" content:@"Custom"]; return @[cn, en]; } |
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot