inputPhoneVC.h 555 B

12345678910111213141516171819202122232425262728
  1. //
  2. // inputPhoneVC.h
  3. // shiku_im
  4. //
  5. // Created by flyeagleTang on 14-6-7.
  6. // Copyright (c) 2014年 Reese. All rights reserved.
  7. //
  8. #import "admobViewController.h"
  9. @interface inputPhoneVC : admobViewController{
  10. UITextField* _area;
  11. UITextField* _phone;
  12. UITextField* _code;
  13. UITextField* _pwd;
  14. UITextField* _inviteCode;
  15. UIButton* _send;
  16. NSString* _smsCode;
  17. NSString* _imgCodeStr;
  18. NSString* _phoneStr;
  19. int _seconds;
  20. }
  21. @property (nonatomic, assign) BOOL isThirdLogin;
  22. @property (nonatomic, assign) int type;
  23. @end