| 123456789101112131415161718192021222324 |
- //
- // ModifySecureKeyPopupView.h
- // kneet
- //
- // Created by Jason Lee on 6/23/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- @import UIKit;
- #import "CustomAlertView.h"
- #import "ModifySecureKeyPopupView.h"
- @class CustomTextField2;
- @interface ModifySecureKeyPopupView : CustomAlertView
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
- @property (weak, nonatomic) IBOutlet CustomTextField2 *txtSecureCode;
- @property (weak, nonatomic) IBOutlet CustomTextField2 *txtSecureCodeConfirm;
- - (id)initFromNib;
- @end
|