| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // CmdClsClassListPopupView.h
- // kneet
- //
- // Created by Jason Lee on 5/22/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- @import UIKit;
- #import "ItemModel.h"
- #import "CustomAlertView.h"
- @interface CommandClassListPopupView : CustomAlertView
- @property (strong, nonatomic) ItemModel *tmpItem;
- @property (weak, nonatomic) IBOutlet UITableView *tableView;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *tableViewHeightConstraint;
- - (id)initFromNib;
- @end
- @class CustomLabel;
- @class CustomButton;
- @class CustomCheckBox;
- @class CustomRadioButton;
- @class CustomImageView;
- @interface CommandClassListCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomImageView *imgvItem;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblItemName;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblSubItems;
- @property (weak, nonatomic) IBOutlet UIView *controlContainerView;
- @property (weak, nonatomic) IBOutlet UIView *controlContainerView2;
- @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoSelect;
- @end
|