AppInfoViewController.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // AppInfoViewController.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 AppInfoViewController : JDTableViewController
  12. #pragma mark - Properties
  13. @property (weak, nonatomic) IBOutlet CustomLabel *lblVersion;
  14. @property (weak, nonatomic) IBOutlet CustomButton *btnAppVersion;
  15. @property (weak, nonatomic) IBOutlet CustomLabel *lblManufacturer;
  16. //@property (weak, nonatomic) IBOutlet CustomLabel *lblOpenSource;
  17. //@property (weak, nonatomic) IBOutlet CustomButton *btnLicense;
  18. @property (weak, nonatomic) IBOutlet CustomLabel *lblPolicy;
  19. @property (weak, nonatomic) IBOutlet CustomButton *btnServiceTerm;
  20. @property (weak, nonatomic) IBOutlet CustomButton *btnPrivatePolicy;
  21. @property (weak, nonatomic) IBOutlet CustomButton *btnLBSTerm;
  22. #pragma mark - Instance Methods
  23. - (IBAction)btnLicenseTouched:(id)sender;
  24. - (IBAction)btnServiceTermsTouched:(id)sender;
  25. - (IBAction)btnPrivatePolicyTouched:(id)sender;
  26. - (IBAction)btnLBSTermsTouched:(id)sender;
  27. @end