20 lines
374 B
C
20 lines
374 B
C
|
|
//
|
||
|
|
// TUITranslationLanguageController.h
|
||
|
|
// TUITranslation
|
||
|
|
//
|
||
|
|
// Created by xia on 2023/4/7.
|
||
|
|
// Copyright © 2023 Tencent. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface TUITranslationLanguageController : UIViewController
|
||
|
|
|
||
|
|
@property(nonatomic, copy) void (^onSelectedLanguage)(NSString *languageName);
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|