
- 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
28 lines
579 B
Objective-C
28 lines
579 B
Objective-C
//
|
|
// AccountBindingViewController.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2025/3/14.
|
|
//
|
|
|
|
#import "MvpViewController.h"
|
|
@class UserInfoModel;
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
typedef NS_ENUM(NSUInteger, BindingDisplayType) {
|
|
BindingDisplayType_email,
|
|
BindingDisplayType_phoneNum,
|
|
};
|
|
|
|
@interface AccountBindingViewController : MvpViewController
|
|
|
|
- (instancetype)initWithType:(BindingDisplayType)type
|
|
currentBindingAccount:(NSString *)account
|
|
areaCode:(NSString *)areaCode
|
|
userInfo:(UserInfoModel *)userInfo;
|
|
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|