| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- //
- // 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)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
|