| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- //
- // 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;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblStep;
- #pragma mark - Instance Methods
- @property (weak, nonatomic) IBOutlet CustomButton *btnCancle;
- @property (weak, nonatomic) IBOutlet CustomButton *btnNext;
- - (IBAction)btnNextTouched:(id)sender;
- - (IBAction)btnCancelTouched:(id)sender;
- @end
- @interface AgreementTermTableViewCell : KNTableViewCell2
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree;
- @property (weak, nonatomic) IBOutlet CustomButton *btnDescLook;
- @end
- @interface AgreementServiceTableViewCell : KNTableViewCell2
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree;
- @property (weak, nonatomic) IBOutlet CustomButton *btnDescLook;
- @end
- @interface AgreementLocationTableViewCell : KNTableViewCell2
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree;
- @property (weak, nonatomic) IBOutlet CustomButton *btnDescLook;
- @end
- @interface AgreementAllTableViewCell : KNTableViewCell2
- @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree;
- @end
- @interface AgreementGuideTableViewCell : KNTableViewCell2
- @property (weak, nonatomic) IBOutlet CustomLabel *lblGuide;
- @end
|