Files
featherVoice/TUIKit/TIMCommon/UI_Minimalist/TUIConfig_Minimalist.m

23 lines
494 B
Mathematica
Raw Normal View History

2025-08-08 10:49:36 +08:00
//
// TUIConfig_Minimalist.m
// TIMCommon
//
// Created by Tencent on 2024/7/16.
// Copyright © 2024 Tencent. All rights reserved.
#import "TUIConfig_Minimalist.h"
#import <TUICore/TUIConfig.h>
#import <TUICore/TUIGlobalization.h>
@implementation TUIConfig_Minimalist
+ (void)enableToast:(BOOL)enable {
[TUIConfig defaultConfig].enableToast = enable;
}
+ (void)switchLanguageToTarget:(NSString *)targetLanguage {
[TUIGlobalization setPreferredLanguage:targetLanguage];
}
@end