SettingsViewController.h 620 B

1234567891011121314151617181920212223242526
  1. //
  2. // SettingsViewController.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 CustomLabel;
  10. @interface SettingsViewController : JDTableViewController
  11. #pragma mark - Properties
  12. @property (weak, nonatomic) IBOutlet CustomLabel *lblAccount;
  13. @property (weak, nonatomic) IBOutlet CustomLabel *lblMobile;
  14. @property (weak, nonatomic) IBOutlet CustomLabel *lblHome;
  15. @property (weak, nonatomic) IBOutlet CustomLabel *lblService;
  16. @property (weak, nonatomic) IBOutlet CustomLabel *lblApp;
  17. #pragma mark - Instance Methods
  18. @end