// // AppDelegate.h // KulexiuForStudent // // Created by Kyle on 2022/3/16. // #import #import "LoginViewController.h" #import "CustomNavViewController.h" #import "CustomTabBarController.h" @interface AppDelegate : UIResponder @property (nonatomic, strong) NSData *deviceToken; @property (strong, nonatomic) UIWindow *window; @property (nonatomic, strong) CustomTabBarController *tabBarController; //记录当前界面是否支持横竖屏旋转 @property (assign, nonatomic)BOOL allowAutoRotate; @property (nonatomic, assign) BOOL isShowMemoAlert; @property (nonatomic, assign) BOOL isShowFlashAlert; // 是否显示首页 news alert @property (nonatomic, strong) NSMutableDictionary *outLinkParm; - (void)showMemoAlert; - (void)initTableBar; - (void)appTrackActionAuth; - (void)initLoginView; - (void)handleNotiferSource; - (void)displayUnreadMessageCount; - (void)noteIMNewsCount:(NSInteger)count; - (void)clearIMNewsCount; - (void)refreshThemeColorAndConfig; @end