AppDelegate.h 507 Bytes
//
//  AppDelegate.h
//  CNLiveScioLive
//
//  Created by CNLive-zxw on 2018/9/17.
//  Copyright © 2018年 CNLive. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) NSString *lan; //用来保存选择的语言

- (NSString *)showText:(NSString *)key; //用来替代以往的 NSString 方法
- (void)setApplicationLanguage;
- (void)initializeSDKConfiguration;

@end