AppDelegate.h 771 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // AppDelegate.h
  3. // KulexiuForStudent
  4. //
  5. // Created by Kyle on 2022/3/16.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "KSTabBarViewController.h"
  9. #import "LoginViewController.h"
  10. #import "CustomNavViewController.h"
  11. @interface AppDelegate : UIResponder <UIApplicationDelegate>
  12. @property (strong, nonatomic) UIWindow *window;
  13. @property (nonatomic, strong) KSTabBarViewController *tabBarController;
  14. //记录当前界面是否支持横竖屏旋转
  15. @property (assign, nonatomic)BOOL allowAutoRotate;
  16. @property (nonatomic, assign) BOOL isShowMemoAlert;
  17. @property (nonatomic, assign) BOOL isShowFlashAlert; // 是否显示首页 news alert
  18. - (void)showMemoAlert;
  19. - (void)initTableBar;
  20. - (void)requestRongCloudToken;
  21. - (void)appTrackActionAuth;
  22. - (void)initLoginView;
  23. @end