123456789101112131415161718192021222324252627 |
- //
- // KSLoginManager.h
- // KulexiuForTeacher
- //
- // Created by 王智 on 2023/8/7.
- //
- #import <Foundation/Foundation.h>
- #define APPLOGIN_MANAGER ([KSLoginManager shareInstance])
- NS_ASSUME_NONNULL_BEGIN
- /// 登录管理实例
- @interface KSLoginManager : NSObject
- + (instancetype)shareInstance;
- - (void)loginAction;
- - (void)logoutAction;
- - (NSString *)getVisableControllerName;
- @end
- NS_ASSUME_NONNULL_END
|