| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- //
- // RulesConditionViewController.h
- // kneet2
- //
- // Created by Jason Lee on 11/25/15.
- // Copyright © 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class ItemModel;
- @class CustomImageView;
- @class CustomLabel;
- @class CustomButton;
- @class CustomTableView;
- @interface RulesConditionViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) NSMutableArray<ItemModel> *conditions;
- @property (weak, nonatomic) NSMutableArray<ItemModel> *refDevices;
- @property (assign, nonatomic) BOOL isShowingMode;
- @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
- @property (assign, nonatomic) CGFloat tableHeight;
- #pragma mark - Instance Methods
- @end
- @interface RulesConditionHeaderTableViewCell : KNTableViewCell2
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomButton *btnAdd;
- @end
- @interface RulesConditionDeviceTableViewCell : KNTableViewCell2
- @property (weak, nonatomic) IBOutlet CustomImageView *imgvIcon;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblItem;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblSubItem;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblCondition;
- @property (weak, nonatomic) IBOutlet CustomButton *btnDelete;
- @property (weak, nonatomic) IBOutlet UIView *bottomLine;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintConditionLabelRight;
- @end
- @interface RulesConditionTableViewCell : KNTableViewCell2
- @property (weak, nonatomic) IBOutlet CustomImageView *imgvIcon;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblItem;
- @property (weak, nonatomic) IBOutlet CustomButton *btnDelete;
- @property (weak, nonatomic) IBOutlet UIView *bottomLine;
- @end
- @interface RulesConditionFooterTableViewCell : KNTableViewCell2
- @end
|