// // ThingsViewController.h // kneet // // Created by Jason Lee on 3/10/15. // Copyright (c) 2015 ntels. All rights reserved. // #import "JDViewController.h" @class DeviceModel; @class CustomLabel; @interface ThingsViewController : JDViewController #pragma mark - Properties @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; @property (weak, nonatomic) IBOutlet UIView *addHubContainerView; @property (weak, nonatomic) IBOutlet UICollectionView *collectionView; @property (weak, nonatomic) IBOutlet CustomButton *btnAddHub; #pragma mark - Instance Methods - (void)prepareViewDidLoad; - (void)updateHomeHubStatusToDevices; - (void)updateDevice:(DeviceModel *)device; - (IBAction)btnAddHubTouched:(id)sender; @end @class CustomButton; @class CustomLabel; @class CustomImageView; @class CustomCheckBox; @interface ThingsCollectionViewCell : UICollectionViewCell @property (weak, nonatomic) IBOutlet CustomButton *btnDevice; @property (weak, nonatomic) IBOutlet CustomLabel *lblDeviceName; @property (weak, nonatomic) IBOutlet CustomLabel *lblDeviceStatus; @end @interface ThingsAddCollectionViewCell : UICollectionViewCell @property (weak, nonatomic) IBOutlet CustomButton *btnAdd; @end @interface ThingsCollectionFooterView : UICollectionReusableView @property (weak, nonatomic) IBOutlet CustomButton *btnAdd; @end