| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- //
- // 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 : KNTableViewCell2
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree;
- @end
- @interface AgreementServiceTableViewCell : KNTableViewCell2
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree;
- @end
- @interface AgreementAllTableViewCell : KNTableViewCell2
- @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree;
- @end
- @interface AgreementGuideTableViewCell : KNTableViewCell2
- @property (weak, nonatomic) IBOutlet CustomLabel *lblGuide;
- @end
|