12345678910111213141516171819202122232425262728293031323334 |
- //
- // AppDelegate.h
- // KulexiuForStudent
- //
- // Created by Kyle on 2022/3/16.
- //
- #import <UIKit/UIKit.h>
- #import "KSTabBarViewController.h"
- #import "LoginViewController.h"
- #import "CustomNavViewController.h"
- @interface AppDelegate : UIResponder <UIApplicationDelegate>
- @property (strong, nonatomic) UIWindow *window;
- @property (nonatomic, strong) KSTabBarViewController *tabBarController;
- //记录当前界面是否支持横竖屏旋转
- @property (assign, nonatomic)BOOL allowAutoRotate;
- @property (nonatomic, assign) BOOL isShowMemoAlert;
- @property (nonatomic, assign) BOOL isShowFlashAlert; // 是否显示首页 news alert
- - (void)showMemoAlert;
- - (void)initTableBar;
- - (void)requestRongCloudToken;
- - (void)appTrackActionAuth;
- - (void)initLoginView;
- @end
|