AgreementViewController.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. //
  2. // AgreementViewController.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 10/15/15.
  6. // Copyright © 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class KNTableViewCell;
  10. @class CustomLabel;
  11. @class CustomCheckBox;
  12. @interface AgreementViewController : JDViewController
  13. #pragma mark - Properties
  14. @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
  15. @property (weak, nonatomic) IBOutlet CustomLabel *lblStep;
  16. #pragma mark - Instance Methods
  17. @property (weak, nonatomic) IBOutlet CustomButton *btnCancle;
  18. @property (weak, nonatomic) IBOutlet CustomButton *btnNext;
  19. - (IBAction)btnNextTouched:(id)sender;
  20. - (IBAction)btnCancelTouched:(id)sender;
  21. @end
  22. @interface AgreementTermTableViewCell : KNTableViewCell2
  23. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  24. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree;
  25. @property (weak, nonatomic) IBOutlet CustomButton *btnDescLook;
  26. @end
  27. @interface AgreementServiceTableViewCell : KNTableViewCell2
  28. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  29. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree;
  30. @property (weak, nonatomic) IBOutlet CustomButton *btnDescLook;
  31. @end
  32. @interface AgreementLocationTableViewCell : KNTableViewCell2
  33. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  34. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree;
  35. @property (weak, nonatomic) IBOutlet CustomButton *btnDescLook;
  36. @end
  37. @interface AgreementAllTableViewCell : KNTableViewCell2
  38. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree;
  39. @end
  40. @interface AgreementGuideTableViewCell : KNTableViewCell2
  41. @property (weak, nonatomic) IBOutlet CustomLabel *lblGuide;
  42. @end