AppDelegate.h 583 B

1234567891011121314151617181920212223242526
  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. - (void)initTableBar;
  17. - (void)requestRongCloudToken;
  18. - (void)appTrackActionAuth;
  19. @end