// // 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 CustomCheckBox *chkAutoLogin; @property (weak, nonatomic) IBOutlet CustomButton *btnLogout; @property (weak, nonatomic) IBOutlet CustomButton *btnProfile; @end @interface SettingsNotificationTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomCheckBox *chkHomeModeChange; @property (weak, nonatomic) IBOutlet CustomCheckBox *chkHomeEmptyChange; @end @interface SettingsServiceTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomLabel *lblService; @property (weak, nonatomic) IBOutlet CustomLabel *lblPolicy; @end @interface SettingsVersionTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomLabel *lblVersion; @end