HomeHubInitViewController.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // HomeHubInitViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 10/23/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. #import "QRCodeViewController.h"
  10. @class CustomTextField;
  11. @class CustomLabel;
  12. @class CustomButton;
  13. @interface HomeHubInitViewController : JDViewController
  14. #pragma mark - Properties
  15. @property (assign, nonatomic) QRCodeType qrcodeType;
  16. @property (strong, nonatomic) NSString *activationCode;
  17. @property (strong, nonatomic) NSString *activationPassword;
  18. @property (weak, nonatomic) IBOutlet UIView *maskView;
  19. @property (weak, nonatomic) IBOutlet UIView *popView;
  20. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintPopViewTop;
  21. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  22. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
  23. @property (strong, nonatomic) NSString *deviceId;
  24. @property (weak, nonatomic) IBOutlet CustomTextField *txtSecureCode;
  25. @property (weak, nonatomic) IBOutlet CustomTextField *txtSecureCodeConfirm;
  26. @property (weak, nonatomic) IBOutlet CustomButton *btnConfirm;
  27. #pragma mark - Instance Methods
  28. - (IBAction)btnConfirmTouched:(id)sender;
  29. - (IBAction)btnCloseTouched:(id)sender;
  30. @end