// // AgreementViewController.h // kneet2 // // Created by Jason Lee on 10/15/15. // Copyright © 2015 ntels. All rights reserved. // #import "JDViewController.h" @class KNTableViewCell; @class CustomLabel; @class CustomCheckBox; @interface AgreementViewController : JDViewController #pragma mark - Properties @property (weak, nonatomic) IBOutlet CustomTableView *tableView; #pragma mark - Instance Methods - (IBAction)btnNextTouched:(id)sender; - (IBAction)btnCancelTouched:(id)sender; @end @interface AgreementTermTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree; @end @interface AgreementServiceTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree; @end @interface AgreementAllTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree; @end @interface AgreementGuideTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomLabel *lblGuide; @end