| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // SecureChangeViewController.h
- // kneet
- //
- // Created by Jason Lee on 5/27/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- #import "QRCodeViewController.h"
- @class CustomLabel;
- @class CustomTextField2;
- @class CustomButton;
- @interface SecureChangeViewController : JDViewController
- #pragma mark - Properties
- @property (assign, nonatomic) QRCodeType qrcodeType;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
- @property (strong, nonatomic) NSString *deviceId;
- @property (weak, nonatomic) IBOutlet CustomTextField2 *txtSecureCode;
- @property (weak, nonatomic) IBOutlet CustomButton *btnConfirm;
- @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
- #pragma mark - Instance Methods
- - (IBAction)btnConfirmTouched:(id)sender;
- - (IBAction)btnCancelTouched:(id)sender;
- @end
|