SettingsViewController.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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 CustomLabel *lblPhoneNum;
  26. @property (weak, nonatomic) IBOutlet CustomButton *btnChangeNum;
  27. @property (weak, nonatomic) IBOutlet CustomLabel *lblQuiz;
  28. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAutoLogin;
  29. @property (weak, nonatomic) IBOutlet CustomButton *btnLogout;
  30. @property (weak, nonatomic) IBOutlet CustomButton *btnProfile;
  31. @property (weak, nonatomic) IBOutlet CustomButton *btnProfileSetting;
  32. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *contraintEmailChangeBottom;
  33. @end
  34. @interface SettingsNotificationTableViewCell : KNTableViewCell
  35. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkHomeModeChange;
  36. //@property (weak, nonatomic) IBOutlet CustomCheckBox *chkHomeEmptyChange;
  37. //@property (weak, nonatomic) IBOutlet CustomLabel *lblHomehubWarn;
  38. //@property (weak, nonatomic) IBOutlet KNView *homehubInfoView;
  39. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintHomehubInfoViewHeight;
  40. @property (weak, nonatomic) IBOutlet UIView *viewThingsSet;
  41. @property (weak, nonatomic) IBOutlet CustomButton *btnThingsSet;
  42. @end
  43. @interface SettingsServiceTableViewCell : KNTableViewCell
  44. @property (weak, nonatomic) IBOutlet CustomButton *btnService;
  45. @property (weak, nonatomic) IBOutlet CustomButton *btnPolicy;
  46. @end
  47. @interface SettingsVersionTableViewCell : KNTableViewCell
  48. @property (weak, nonatomic) IBOutlet CustomLabel *lblVersion;
  49. @end
  50. @interface SettingsDeleteTableViewCell : KNTableViewCell
  51. @property (weak, nonatomic) IBOutlet CustomButton *btnDelete;
  52. @end
  53. @interface SettingsPasswdTableViewCell : KNTableViewCell
  54. @property (weak, nonatomic) IBOutlet CustomButton *btnPassword;
  55. @end