AppDelegate.h 844 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // AppDelegate.h
  3. // KulexiuForTeacher
  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 (nonatomic, strong) NSData *deviceToken;
  13. @property (strong, nonatomic) UIWindow *window;
  14. @property (nonatomic, strong) KSTabBarViewController *tabBarController;
  15. //记录当前界面是否支持横竖屏旋转
  16. @property (assign, nonatomic)BOOL allowAutoRotate;
  17. @property (nonatomic, strong) NSMutableDictionary *outLinkParm;
  18. @property (nonatomic, assign) BOOL isShowMemoAlert;
  19. - (void)initTableBar;
  20. - (void)requestRongCloudToken;
  21. - (void)appTrackActionAuth;
  22. - (void)initLoginView;
  23. - (void)handleNotiferSource;
  24. - (void)displayUnreadMessageCount;
  25. @end