| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- //
- // SettingsViewController.h
- // kneet2
- //
- // Created by Jason Lee on 10/8/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomLabel;
- @class CustomCheckBox;
- @class CustomButton;
- @interface SettingsViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
- #pragma mark - Instance Methods
- - (IBAction)btnCloseTouched:(id)sender;
- @end
- @interface SettingsAccountTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblEmail;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblNickname;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblChangeNickname;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblChangePassword;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblChangeEmail;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblEmailWaiting;
- @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAutoLogin;
- @property (weak, nonatomic) IBOutlet CustomButton *btnLogout;
- @property (weak, nonatomic) IBOutlet CustomButton *btnProfile;
- @property (weak, nonatomic) IBOutlet CustomButton *btnProfileSetting;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *contraintEmailChangeBottom;
- @end
- @interface SettingsNotificationTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomCheckBox *chkHomeModeChange;
- @property (weak, nonatomic) IBOutlet CustomCheckBox *chkHomeEmptyChange;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblHomehubWarn;
- @property (weak, nonatomic) IBOutlet KNView *homehubInfoView;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintHomehubInfoViewHeight;
- @end
- @interface SettingsServiceTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomButton *btnService;
- @property (weak, nonatomic) IBOutlet CustomButton *btnPolicy;
- @end
- @interface SettingsVersionTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblVersion;
- @end
- @interface SettingsPasswdTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomButton *btnPassword;
- @end
|