| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- //
- // HomeHubViewController.h
- // kneet2
- //
- // Created by Jason Lee on 10/28/15.
- // Copyright © 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomLabel;
- @class CustomImageView;
- @interface HomeHubViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
- #pragma mark - Instance Methods
- - (IBAction)btnCloseTouched:(id)sender;
- @end
- @interface HomeHubTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblStatus;
- @property (weak, nonatomic) IBOutlet CustomImageView *imgvStatus;
- @end
- @interface HomeHubRegistTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDate;
- @end
- @interface HomeHubSecureTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomButton *btnSecure;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblCaution;
- @end
- @interface HomeHubInfoTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblInfo;
- @end
|