CommandClassListPopupView.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // CmdClsClassListPopupView.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 5/22/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "ItemModel.h"
  10. #import "CustomAlertView.h"
  11. @interface CommandClassListPopupView : CustomAlertView
  12. @property (strong, nonatomic) ItemModel *tmpItem;
  13. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  14. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *tableViewHeightConstraint;
  15. - (id)initFromNib;
  16. @end
  17. @class CustomLabel;
  18. @class CustomButton;
  19. @class CustomCheckBox;
  20. @class CustomRadioButton;
  21. @class CustomImageView;
  22. @interface CommandClassListCell : UITableViewCell
  23. @property (weak, nonatomic) IBOutlet CustomImageView *imgvItem;
  24. @property (weak, nonatomic) IBOutlet CustomLabel *lblItemName;
  25. @property (weak, nonatomic) IBOutlet CustomLabel *lblSubItems;
  26. @property (weak, nonatomic) IBOutlet UIView *controlContainerView;
  27. @property (weak, nonatomic) IBOutlet UIView *controlContainerView2;
  28. @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoSelect;
  29. @end