// // UserManagementCenter.h // MaoerProject // // Created by eliolu on 2018/8/20. // Copyright © 2018年 eliolu. All rights reserved. // #import @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