| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // AppInfoViewController.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 AppInfoViewController : JDTableViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet CustomLabel *lblVersion;
- @property (weak, nonatomic) IBOutlet CustomButton *btnAppVersion;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblManufacturer;
- //@property (weak, nonatomic) IBOutlet CustomLabel *lblOpenSource;
- //@property (weak, nonatomic) IBOutlet CustomButton *btnLicense;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblPolicy;
- @property (weak, nonatomic) IBOutlet CustomButton *btnServiceTerm;
- @property (weak, nonatomic) IBOutlet CustomButton *btnPrivatePolicy;
- @property (weak, nonatomic) IBOutlet CustomButton *btnLBSTerm;
- #pragma mark - Instance Methods
- - (IBAction)btnLicenseTouched:(id)sender;
- - (IBAction)btnServiceTermsTouched:(id)sender;
- - (IBAction)btnPrivatePolicyTouched:(id)sender;
- - (IBAction)btnLBSTermsTouched:(id)sender;
- @end
|