//
|
// MainView.h
|
// MaoerProject
|
//
|
// Created by eliolu on 2018/8/16.
|
// Copyright © 2018年 eliolu. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
|
@interface MainView : UIView
|
|
+(MainView *)getInstance;
|
|
@property (nonatomic, strong)UILabel *titleLabel;//标题
|
@property (nonatomic, strong)UITextField *userName;
|
@property (nonatomic, strong)UITextField *passWord;
|
@property (nonatomic, strong)UIButton *loginBt;
|
@property (nonatomic, strong)UIButton *registerBt;
|
@property (nonatomic, strong)UIButton *fastLoginBt;
|
@property (nonatomic, strong)UIButton *forgetBt;
|
|
@property (nonatomic, strong)UIButton *zhanghaoErrerBt;
|
@property (nonatomic, strong)UIButton *mimaErrerBt;
|
|
@end
|