AgreementViewController.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. //
  2. // AgreementViewController.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 10/15/15.
  6. // Copyright © 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class KNTableViewCell;
  10. @class CustomLabel;
  11. @class CustomCheckBox;
  12. @interface AgreementViewController : JDViewController
  13. #pragma mark - Properties
  14. @property (weak, nonatomic) IBOutlet CustomTableView *tableView; // 테이블 뷰
  15. @property (weak, nonatomic) IBOutlet CustomLabel *lblStep; // Header 스텝 번호
  16. #pragma mark - Instance Methods
  17. @property (weak, nonatomic) IBOutlet CustomButton *btnCancle; // 취소 버튼
  18. @property (weak, nonatomic) IBOutlet CustomButton *btnNext; // 다음 버튼
  19. - (IBAction)btnNextTouched:(id)sender;
  20. - (IBAction)btnCancelTouched:(id)sender;
  21. @end
  22. // 서비스 이용약관 Cell
  23. @interface AgreementTermTableViewCell : KNTableViewCell2
  24. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; // 서비스 이용 약관 텍스트
  25. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree; // 동의 체크박스
  26. @property (weak, nonatomic) IBOutlet CustomButton *btnDescLook; // 약관 보기 버튼
  27. @end
  28. // 개인정보 취급방침 Cell
  29. @interface AgreementServiceTableViewCell : KNTableViewCell2
  30. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; // 개인정보 취급방침 텍스트
  31. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree; // 동의 체크박스
  32. @property (weak, nonatomic) IBOutlet CustomButton *btnDescLook; // 약관 보기 버튼
  33. @end
  34. // 위치기반 서비스 이용안내 Cell ( 사용안함 )
  35. @interface AgreementLocationTableViewCell : KNTableViewCell2
  36. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  37. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree;
  38. @property (weak, nonatomic) IBOutlet CustomButton *btnDescLook;
  39. @end
  40. // 전체 동의 Cell
  41. @interface AgreementAllTableViewCell : KNTableViewCell2
  42. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAgree; // 전체 동의 체크박스
  43. @end
  44. // Guide 텍스트 Cell ( 사용안함 )
  45. @interface AgreementGuideTableViewCell : KNTableViewCell2
  46. @property (weak, nonatomic) IBOutlet CustomLabel *lblGuide;
  47. @end