HomeHubSelectPopupView.h 948 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // HomeHubSelectPopupView.h
  3. // OneCable
  4. //
  5. // Created by KaRam Kim on 2017. 5. 31..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. #import "JDViewController.h"
  11. @class CommonCode;
  12. @class CustomImageView;
  13. @class CustomCheckBox;
  14. @class CustomRadioButton;
  15. //@protocol HomeHubSelectPopupViewDelegate <NSObject>
  16. //
  17. //- (void)changeHomeHub:(DeviceModel *)info;
  18. //
  19. //@end
  20. @interface HomeHubSelectPopupTableViewCell : KNTableViewCell
  21. @property (weak, nonatomic) IBOutlet CustomLabel *lbTitle;
  22. @property (weak, nonatomic) IBOutlet CustomLabel *lbSerial;
  23. @property (weak, nonatomic) IBOutlet CustomLabel *lbDesc;
  24. @property (weak, nonatomic) IBOutlet CustomRadioButton *btnRadio;
  25. @end
  26. @interface HomeHubSelectPopupView : CustomAlertView
  27. @property (copy, nonatomic) DeviceModel *selectedDeviceModel;
  28. @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
  29. - (id)initFromNib;
  30. @end