client_Hale
2018-09-28 e093b4c88c58ecec7d0b8c34c45b4615a5c3f594
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//
//  UserManagementCenter.h
//  MaoerProject
//
//  Created by eliolu on 2018/8/20.
//  Copyright © 2018年 eliolu. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
@interface UserManagementCenter : UIView
 
@property (nonatomic, strong) UIView *leftView;
 
@property (nonatomic, strong) UIView *realNameView;
@property (nonatomic, strong) UIView *bindPhoneView;
@property (nonatomic, strong) UIView *ChangePwView;
@property (nonatomic, strong) UIView *quitView;
@property (nonatomic, strong) UIButton *quitBt;
 
@property (nonatomic, strong) UIButton *changePwError;
@property (nonatomic, strong) UIButton *bindPhoneError;
@property (nonatomic, strong) UIButton *realNameError;
 
+(UserManagementCenter *)getInstance;
 
-(void)GetUserInf;
-(void)isRealName;
 
@end