24 lines
396 B
Objective-C
24 lines
396 B
Objective-C
//
|
|
// TLSDKManager.h
|
|
// TLChat
|
|
//
|
|
// Created by 李伯坤 on 2017/9/20.
|
|
// Copyright © 2017年 李伯坤. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface TLSDKManager : NSObject
|
|
|
|
+ (TLSDKManager *)sharedInstance;
|
|
|
|
/**
|
|
* 启动,初始化
|
|
*/
|
|
- (void)launchInWindow:(UIWindow *)window;
|
|
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
+ (instancetype)new NS_UNAVAILABLE;
|
|
|
|
@end
|