PwdPopupView.h 458 B

1234567891011121314151617181920212223
  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 CustomTextField;
  11. @interface PwdPopupView : CustomAlertView
  12. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc2;
  13. @property (weak, nonatomic) IBOutlet CustomTextField *txtPwd;
  14. @property (weak, nonatomic) IBOutlet CustomTextField *txtPwdConfirm;
  15. - (id)initFromNib;
  16. @end