LPhoneRegistVC.h 1.4 KB

12345678910111213141516171819202122232425262728
  1. //
  2. // LPhoneRegistVC.h
  3. // BuguLive
  4. //
  5. // Created by 丁凯 on 2017/6/15.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "BGBaseViewController.h"
  9. @interface LPhoneRegistVC : BGBaseViewController
  10. @property (weak, nonatomic) IBOutlet UIImageView *headImgView; //头像imgview
  11. @property (weak, nonatomic) IBOutlet UIButton *headBtn; //头像button
  12. @property (weak, nonatomic) IBOutlet UILabel *headLabel; //头像文字提示
  13. @property (weak, nonatomic) IBOutlet UIView *bottomView; //名字底部view
  14. @property (weak, nonatomic) IBOutlet UITextField *nameFiled; //名字filed
  15. @property (weak, nonatomic) IBOutlet UIButton *leftSexBtn; //男性btn
  16. @property (weak, nonatomic) IBOutlet UIButton *rightSexBtn; //女性btn
  17. @property (weak, nonatomic) IBOutlet UILabel *sexLabel; //性别label
  18. @property (weak, nonatomic) IBOutlet UIButton *nextBtn; //下一步
  19. @property (weak, nonatomic) IBOutlet UILabel *textLabel; //文字多少的提示
  20. @property (nonatomic, copy) NSString *used_id; //用户id
  21. @property (nonatomic, copy) NSString *userName; //用户名字
  22. @property (nonatomic, strong) NSDictionary *userInfoDic; //用户信息的字典
  23. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *topConstraint;
  24. @end