Browse Source

登录部分代码

huangyp 6 years ago
parent
commit
2df7a61c1b
1 changed files with 9 additions and 9 deletions
  1. 9 9
      UU_Ent/UU_Ent/Modules/Login/Main/Controllers/YRLoginVC.m

+ 9 - 9
UU_Ent/UU_Ent/Modules/Login/Main/Controllers/YRLoginVC.m

@@ -9,6 +9,11 @@
 #import "YRLoginVC.h"
 #import "YRLoginVC.h"
 
 
 @interface YRLoginVC ()
 @interface YRLoginVC ()
+@property (nonatomic,strong) UITextField *passwordTF;
+@property (nonatomic,strong) UITextField *phoneTF;
+@property (nonatomic,strong) UIButton *loginBtn;
+@property (nonatomic,strong) UIButton *registerBtn;
+@property (nonatomic,strong) UIImageView *headImageV;
 
 
 @end
 @end
 
 
@@ -17,17 +22,12 @@
 - (void)viewDidLoad {
 - (void)viewDidLoad {
     [super viewDidLoad];
     [super viewDidLoad];
     // Do any additional setup after loading the view.
     // Do any additional setup after loading the view.
-    NSLog(@"123456");
 }
 }
 
 
-/*
-#pragma mark - Navigation
-
-// In a storyboard-based application, you will often want to do a little preparation before navigation
-- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
-    // Get the new view controller using [segue destinationViewController].
-    // Pass the selected object to the new view controller.
+#pragma mark --- 设置UI
+-(void)setUpUI
+{
+    
 }
 }
-*/
 
 
 @end
 @end