DeleteAccountPopupView.h 571 B

12345678910111213141516171819202122232425
  1. //
  2. // DeleteAccountPopupView.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 5/12/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. @class CustomLabel;
  11. @interface DeleteAccountPopupView : CustomAlertView
  12. @property (strong, nonatomic) NSString *passwd;
  13. @property (weak, nonatomic) IBOutlet CustomLabel *lblWarning;
  14. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc1;
  15. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc2;
  16. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc3;
  17. - (id)initFromNib;
  18. @end