PSUpdateUserVC.h 668 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // PSUpdateUserVC.h
  3. // shiku_im
  4. //
  5. // Created by flyeagleTang on 14-6-10.
  6. // Copyright (c) 2014年 Reese. All rights reserved.
  7. //
  8. #import "admobViewController.h"
  9. @interface PSUpdateUserVC : admobViewController{
  10. UITextField* _pwd;
  11. UITextField* _repeat;
  12. UITextField* _name;
  13. UILabel* _workexp;
  14. UILabel* _city;
  15. UILabel* _dip;
  16. UISegmentedControl* _sex;
  17. UITextField* _birthday;
  18. JXDatePicker* _date;
  19. UIImage* _image;
  20. JXImageView* _head;
  21. UILabel *_inviteCode;
  22. }
  23. @property (nonatomic,strong) JXUserObject* user;
  24. @property (nonatomic,assign) BOOL isRegister;
  25. @property (nonatomic, strong) UIImage *headImage;
  26. @end