PwdPopupView.h 521 B

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