AgreementViewController.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 : KNTableViewCell2
  20. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  21. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree;
  22. @end
  23. @interface AgreementServiceTableViewCell : KNTableViewCell2
  24. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  25. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree;
  26. @end
  27. @interface AgreementAllTableViewCell : KNTableViewCell2
  28. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree;
  29. @end
  30. @interface AgreementGuideTableViewCell : KNTableViewCell2
  31. @property (weak, nonatomic) IBOutlet CustomLabel *lblGuide;
  32. @end