AdminAuthPopupView.h 340 B

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