// // 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; // Header 스텝 번호 #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 // 서비스 이용약관 Cell @interface AgreementTermTableViewCell : KNTableViewCell2 @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; // 서비스 이용 약관 텍스트 @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree; // 동의 체크박스 @property (weak, nonatomic) IBOutlet CustomButton *btnDescLook; // 약관 보기 버튼 @end // 개인정보 취급방침 Cell @interface AgreementServiceTableViewCell : KNTableViewCell2 @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; // 개인정보 취급방침 텍스트 @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree; // 동의 체크박스 @property (weak, nonatomic) IBOutlet CustomButton *btnDescLook; // 약관 보기 버튼 @end // 위치기반 서비스 이용안내 Cell ( 사용안함 ) @interface AgreementLocationTableViewCell : KNTableViewCell2 @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree; @property (weak, nonatomic) IBOutlet CustomButton *btnDescLook; @end // 전체 동의 Cell @interface AgreementAllTableViewCell : KNTableViewCell2 @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree; // 전체 동의 체크박스 @end // Guide 텍스트 Cell ( 사용안함 ) @interface AgreementGuideTableViewCell : KNTableViewCell2 @property (weak, nonatomic) IBOutlet CustomLabel *lblGuide; @end