| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // ThingsModifyViewController.h
- // kneet
- //
- // Created by Jason Lee on 4/21/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class DeviceModel;
- @interface ThingsModifyViewController : JDViewController
- #pragma mark - Properties
- @property (strong, nonatomic) DeviceModel *device;
- @property (strong, nonatomic) DeviceIconModel *selectedIcon;
- @property (strong, nonatomic) NSMutableArray *dataArray;
- @property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintCollectionViewHeight;
- @property (weak, nonatomic) IBOutlet CustomButton *btnSave;
- @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
- #pragma mark - Instance Methods
- @end
- @class CustomButton;
- @interface ThingsDeviceIconCell : UICollectionViewCell
- @property (strong, nonatomic) IBOutlet CustomButton *btnDeviceIcon;
- @end
- @interface ThingsDeviceHeaderView : UICollectionReusableView
- @property (weak, nonatomic) IBOutlet UILabel *lblHeaderTitle;
- @end
|