| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- //
- // 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
|