KSLoginManager.h 414 B

123456789101112131415161718192021222324252627
  1. //
  2. // KSLoginManager.h
  3. // KulexiuForTeacher
  4. //
  5. // Created by 王智 on 2023/8/7.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #define APPLOGIN_MANAGER ([KSLoginManager shareInstance])
  9. NS_ASSUME_NONNULL_BEGIN
  10. /// 登录管理实例
  11. @interface KSLoginManager : NSObject
  12. + (instancetype)shareInstance;
  13. - (void)loginAction;
  14. - (void)logoutAction;
  15. - (NSString *)getVisableControllerName;
  16. @end
  17. NS_ASSUME_NONNULL_END