AgreementViewController.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. #pragma mark - Instance Methods
  16. - (IBAction)btnNextTouched:(id)sender;
  17. - (IBAction)btnCancelTouched:(id)sender;
  18. @end
  19. @interface AgreementTermTableViewCell : KNTableViewCell
  20. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  21. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree;
  22. @end
  23. @interface AgreementServiceTableViewCell : KNTableViewCell
  24. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  25. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree;
  26. @end
  27. @interface AgreementAllTableViewCell : KNTableViewCell
  28. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree;
  29. @end
  30. @interface AgreementGuideTableViewCell : KNTableViewCell
  31. @property (weak, nonatomic) IBOutlet CustomLabel *lblGuide;
  32. @end