// TUIConfig_Minimalist.h/*** Switch the language of TUIKit.* The currently supported languages are "en", "zh-Hans", and "ar".*/+ (void)switchLanguageToTarget:(NSString *)targetLanguage;
// When to call: Before initializing the TUIKit interface.[TUIConfig_Minimalist switchLanguageToTarget:@"en"];
Set to English | Set to Arabic |
| |
// TUIConfig_Minimalist.h/*** Show the toast prompt built in TUIKit.* The default value is YES.*/+ (void)enableToast:(BOOL)enable;
// When to call: Before initializing the TUIKit interface.[TUIConfig_Minimalist enableToast:NO];
Enable Toast Prompts | Disable Toast Prompts |
| |
Was this page helpful?