ConfirmPasswdPopupView.h 351 B

1234567891011121314151617181920
  1. //
  2. // ConfirmPasswdPopupView.h
  3. // OneCable
  4. //
  5. // Created by Jason Lee on 01/14/15.
  6. // Copyright (c) 2016 ntels. All rights reserved.
  7. @import UIKit;
  8. #import "CustomAlertView.h"
  9. @class CustomTextField;
  10. @interface ConfirmPasswdPopupView : CustomAlertView
  11. @property (weak, nonatomic) IBOutlet CustomTextField *txtPasswd;
  12. - (id)initFromNib;
  13. @end