You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
//
|
|
|
|
// RegisterViewController.h
|
|
|
|
// LekangGuard
|
|
|
|
//
|
|
|
|
// Created by ecell on 2022/10/9.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "BaseViewController.h"
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@interface RegisterViewController : BaseViewController
|
|
|
|
|
|
|
|
/// 页面区分,0:注册,1:忘记密码 2 :首次微信登录,未绑定个手机号 3:验证码登录
|
|
|
|
@property (nonatomic ,assign) NSInteger isViewType;
|
|
|
|
|
|
|
|
@property (nonatomic ,strong) NSString *navTitle;
|
|
|
|
|
|
|
|
/// 微信首次登录,微信返回的信息
|
|
|
|
@property (nonatomic ,strong) NSMutableDictionary *authInfo;
|
|
|
|
|
|
|
|
@property (nonatomic ,strong) void(^isRegisterSuccess)(void);
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|