AccountViewController.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // AccountViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 5/13/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDTableViewController.h"
  9. @class CustomButton;
  10. @class CustomLabel;
  11. @interface AccountViewController : JDTableViewController
  12. #pragma mark - Properties
  13. @property (weak, nonatomic) IBOutlet CustomLabel *lblNameTitle;
  14. @property (weak, nonatomic) IBOutlet CustomButton *btnProfile;
  15. @property (weak, nonatomic) IBOutlet CustomButton *btnName;
  16. @property (weak, nonatomic) IBOutlet CustomLabel *lblEmailTitle;
  17. @property (weak, nonatomic) IBOutlet CustomButton *btnEmail;
  18. @property (weak, nonatomic) IBOutlet CustomLabel *lblNewEmailInfo;
  19. @property (weak, nonatomic) IBOutlet CustomLabel *lblPwdTitle;
  20. @property (weak, nonatomic) IBOutlet CustomLabel *lblPwdChange;
  21. @property (weak, nonatomic) IBOutlet CustomLabel *lblAccountDeleteTitle;
  22. @property (weak, nonatomic) IBOutlet CustomLabel *lblAccountDelete;
  23. #pragma mark - Instance Methods
  24. - (IBAction)btnNameTouched:(id)sender;
  25. - (IBAction)btnEmailTouched:(id)sender;
  26. - (IBAction)btnProfileTouched:(id)sender;
  27. @end