28 lines
687 B
Objective-C
28 lines
687 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// healthQuestion
|
|
//
|
|
// Created by xulei on 2022/8/9.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "YXBaseTabBarController.h"
|
|
/**腾讯IM**/
|
|
#import "TUIDefine.h"
|
|
#import "TUIBaseChatViewController.h"
|
|
#import "TUIThemeManager.h"
|
|
#import "TUILogin.h"
|
|
#import "TUIChatConfig.h"
|
|
#import "TUICallKit.h"
|
|
//Minimalist
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate,UITabBarControllerDelegate,V2TIMConversationListener, TUILoginListener,V2TIMSDKListener, TUICallObserver,V2TIMAPNSListener>
|
|
|
|
@property (strong, nonatomic) UIWindow * window;
|
|
|
|
@property (strong, nonatomic) YXBaseTabBarController *
|
|
mainTabBar;
|
|
|
|
@property (nonatomic,assign)NSInteger unreadNumber;
|
|
@end
|
|
|