NewMobileViewController.h 988 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // NewMobileViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 4/27/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomLabel;
  10. @class CustomTextField2;
  11. @class CustomButton;
  12. @interface NewMobileViewController : JDViewController
  13. #pragma mark - Properties
  14. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  15. @property (assign, nonatomic) BOOL checkedAutoLogin;
  16. @property (strong, nonatomic) NSString *nickname;
  17. @property (strong, nonatomic) NSString *replaceDeviceSn;
  18. @property (weak, nonatomic) IBOutlet CustomLabel *lblNewMobileDesc;
  19. @property (weak, nonatomic) IBOutlet CustomLabel *lblEmailInfo;
  20. @property (weak, nonatomic) IBOutlet CustomTextField2 *txtAuthCode;
  21. @property (weak, nonatomic) IBOutlet CustomButton *btnConfirm;
  22. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
  23. #pragma mark - Instance Methods
  24. - (IBAction)btnConfirmTouched:(id)sender;
  25. - (IBAction)btnCancelTouched:(id)sender;
  26. @end