ModifySecureKeyPopupView.h 533 B

123456789101112131415161718192021222324
  1. //
  2. // ModifySecureKeyPopupView.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 6/23/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. #import "ModifySecureKeyPopupView.h"
  11. @class CustomTextField2;
  12. @interface ModifySecureKeyPopupView : CustomAlertView
  13. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
  14. @property (weak, nonatomic) IBOutlet CustomTextField2 *txtSecureCode;
  15. @property (weak, nonatomic) IBOutlet CustomTextField2 *txtSecureCodeConfirm;
  16. - (id)initFromNib;
  17. @end