DeviceSelectPopupView.h 953 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // DeviceSelectPopupView.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 10/12/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. #import "JDViewController.h"
  11. @class CustomImageView;
  12. @class CustomCheckBox;
  13. @class CustomRadioButton;
  14. @interface DeviceSelectPopupView : CustomAlertView
  15. @property (weak, nonatomic) NSMutableArray<ItemModel> *refDevices;
  16. @property (weak, nonatomic, readonly) NSArray<ItemModel> *selectedDevices;
  17. @property (strong, nonatomic) NSString *typeCode;
  18. @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
  19. - (id)initFromNib;
  20. @end
  21. @interface DeviceSelectPopupTableViewCell : UITableViewCell
  22. @property (weak, nonatomic) IBOutlet CustomImageView *imgvDevice;
  23. @property (weak, nonatomic) IBOutlet CustomLabel *lblDeviceName;
  24. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkSelect;
  25. @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoSelect;
  26. @end