SettingsViewController.h 2.6 KB

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