| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //
- // HomeHubInitViewController.h
- // kneet
- //
- // Created by Jason Lee on 10/23/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- #import "QRCodeViewController.h"
- @class CustomTextField;
- @class CustomLabel;
- @class CustomButton;
- @interface HomeHubInitViewController : JDViewController
- #pragma mark - Properties
- @property (assign, nonatomic) QRCodeType qrcodeType;
- @property (strong, nonatomic) NSString *activationCode;
- @property (strong, nonatomic) NSString *activationPassword;
- @property (weak, nonatomic) IBOutlet UIView *maskView;
- @property (weak, nonatomic) IBOutlet UIView *popView;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintPopViewTop;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
- @property (strong, nonatomic) NSString *deviceId;
- @property (weak, nonatomic) IBOutlet CustomTextField *txtSecureCode;
- @property (weak, nonatomic) IBOutlet CustomTextField *txtSecureCodeConfirm;
- @property (weak, nonatomic) IBOutlet CustomButton *btnConfirm;
- #pragma mark - Instance Methods
- - (IBAction)btnConfirmTouched:(id)sender;
- - (IBAction)btnCloseTouched:(id)sender;
- @end
|