SettingsViewController.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. //
  2. // SettingsViewController.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 10/8/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomLabel;
  10. @class CustomCheckBox;
  11. @class CustomButton;
  12. @interface SettingsViewController : JDViewController
  13. #pragma mark - Properties
  14. @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
  15. #pragma mark - Instance Methods
  16. - (IBAction)btnCloseTouched:(id)sender;
  17. @end
  18. @interface SettingsAccountTableViewCell : KNTableViewCell
  19. @property (weak, nonatomic) IBOutlet CustomLabel *lblEmail;
  20. @property (weak, nonatomic) IBOutlet CustomLabel *lblNickname;
  21. @property (weak, nonatomic) IBOutlet CustomLabel *lblChangeNickname;
  22. @property (weak, nonatomic) IBOutlet CustomLabel *lblChangePassword;
  23. @property (weak, nonatomic) IBOutlet CustomLabel *lblChangeEmail;
  24. @property (weak, nonatomic) IBOutlet CustomLabel *lblEmailWaiting;
  25. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAutoLogin;
  26. @property (weak, nonatomic) IBOutlet CustomButton *btnLogout;
  27. @property (weak, nonatomic) IBOutlet CustomButton *btnProfile;
  28. @property (weak, nonatomic) IBOutlet CustomButton *btnProfileSetting;
  29. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *contraintEmailChangeBottom;
  30. @end
  31. @interface SettingsNotificationTableViewCell : KNTableViewCell
  32. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkHomeModeChange;
  33. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkHomeEmptyChange;
  34. @property (weak, nonatomic) IBOutlet CustomLabel *lblHomehubWarn;
  35. @property (weak, nonatomic) IBOutlet KNView *homehubInfoView;
  36. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintHomehubInfoViewHeight;
  37. @end
  38. @interface SettingsServiceTableViewCell : KNTableViewCell
  39. @property (weak, nonatomic) IBOutlet CustomButton *btnService;
  40. @property (weak, nonatomic) IBOutlet CustomButton *btnPolicy;
  41. @end
  42. @interface SettingsVersionTableViewCell : KNTableViewCell
  43. @property (weak, nonatomic) IBOutlet CustomLabel *lblVersion;
  44. @end
  45. @interface SettingsPasswdTableViewCell : KNTableViewCell
  46. @property (weak, nonatomic) IBOutlet CustomButton *btnPassword;
  47. @end