20 lines
506 B
C
20 lines
506 B
C
|
|
//
|
||
|
|
// AppDelegate.h
|
||
|
|
// QXLive
|
||
|
|
//
|
||
|
|
// Created by 启星 on 2025/4/24.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "QXTabbarController.h"
|
||
|
|
#import <TIMPush/TIMPushManager.h>
|
||
|
|
#import <ImSDK_Plus/ImSDK_Plus.h>
|
||
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate,TIMPushListener,V2TIMConversationListener>
|
||
|
|
|
||
|
|
@property (nonatomic,strong)UIWindow *window;
|
||
|
|
@property (nonatomic,assign)NSInteger allowRotate;
|
||
|
|
@property (nonatomic,strong)QXTabbarController *tabbarVC;
|
||
|
|
-(void)changeRootViewControllerIsTabbar;
|
||
|
|
@end
|
||
|
|
|