SecureThingsViewController.h 974 B

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