| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // AccountViewController.h
- // kneet
- //
- // Created by Jason Lee on 5/13/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDTableViewController.h"
- @class CustomButton;
- @class CustomLabel;
- @interface AccountViewController : JDTableViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet CustomLabel *lblNameTitle;
- @property (weak, nonatomic) IBOutlet CustomButton *btnProfile;
- @property (weak, nonatomic) IBOutlet CustomButton *btnName;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblEmailTitle;
- @property (weak, nonatomic) IBOutlet CustomButton *btnEmail;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblNewEmailInfo;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblPwdTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblPwdChange;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblAccountDeleteTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblAccountDelete;
- #pragma mark - Instance Methods
- - (IBAction)btnNameTouched:(id)sender;
- - (IBAction)btnEmailTouched:(id)sender;
- - (IBAction)btnProfileTouched:(id)sender;
- @end
|