| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // 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
- - (void)updateHomeHubStatus;
- - (IBAction)btnCloseTouched:(id)sender;
- @end
- @interface HomeHubTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblStatus;
- @property (weak, nonatomic) IBOutlet UIImageView *imgvStatus;
- @end
- @interface HomeHubRegistTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDate;
- @end
|