Global
The following content will show you how to set global customized options.
Switch TUIKit language
API Functionality: Switch TUIKit language.
Method Prototype:
// TUIConfig_Minimalist.h/*** Switch the language of TUIKit.* The currently supported languages are "en", "zh-Hans", and "ar".*/+ (void)switchLanguageToTarget:(NSString *)targetLanguage;
Sample code:
// When to call: Before initializing the TUIKit interface.[TUIConfig_Minimalist switchLanguageToTarget:@"en"];
Result:
Set to English | Set to Arabic |
![]() | ![]() |
Enable TUIKit Built-in Prompts
API Functionality: Enable TUIKit built-in toast prompts. If enable, TUIKit components will display the built-in prompts.
Method Prototype:
// TUIConfig_Minimalist.h/*** Show the toast prompt built in TUIKit.* The default value is YES.*/+ (void)enableToast:(BOOL)enable;
Sample code:
// When to call: Before initializing the TUIKit interface.[TUIConfig_Minimalist enableToast:NO];
Result:
Enable Toast Prompts | Disable Toast Prompts |
![]() | ![]() |