ConfirmPwdViewController.h 822 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // ConfirmPwdViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 5/13/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class HomeGroupModel;
  10. @class CustomTextField2;
  11. @class CustomLabel;
  12. @class CustomButton;
  13. @interface ConfirmPwdViewController : JDViewController
  14. #pragma mark - Properties
  15. @property (strong, nonatomic) NSString *popupName;
  16. @property (weak, nonatomic) HomeGroupModel *homegrp;
  17. @property (weak, nonatomic) IBOutlet CustomTextField2 *txtUserPwd;
  18. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  19. @property (weak, nonatomic) IBOutlet CustomButton *btnConfirm;
  20. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
  21. #pragma mark - Instance Methods
  22. - (IBAction)btnConfirmTouched:(id)sender;
  23. - (IBAction)btnCancelTouched:(id)sender;
  24. @end