
- Removed YuMi/Library/ (138 MB, not tracked) - Removed YuMi/Resources/ (23 MB, not tracked) - Removed old version assets (566 files, not tracked) - Excluded Pods/, xcuserdata/ and other build artifacts - Clean repository optimized for company server deployment
21 lines
433 B
Objective-C
21 lines
433 B
Objective-C
//
|
||
// PILoginManager.h
|
||
// YuMi
|
||
//
|
||
// Created by duoban on 2023/10/7.
|
||
//
|
||
|
||
#import <Foundation/Foundation.h>
|
||
#import "MvpViewController.h"
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface PILoginManager : NSObject
|
||
///登录,是否手机isLoginPhone
|
||
+(void)loginWithVC:(MvpViewController *)VC isLoginPhone:(BOOL)isLoginPhone;
|
||
///登录成功,回到首页
|
||
+(void)jumpToHomeVCWithInviteCode:(NSString *)inviteCode;
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|