31 lines
724 B
Objective-C
31 lines
724 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// healthQuestion
|
|
//
|
|
// Created by xulei on 2022/8/9.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "HQBaseTabBarController.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,V2TIMAPNSListener, TUICallObserver>
|
|
|
|
@property (strong, nonatomic) UIWindow * window;
|
|
|
|
@property (nonatomic,assign)NSInteger allowRotate;
|
|
|
|
@property (strong, nonatomic) HQBaseTabBarController * mainTabBar;
|
|
|
|
@property (nonatomic,assign)NSInteger unreadNumber;
|
|
|
|
@end
|
|
|