HomeHubSelectPopupView.h 885 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 (weak, nonatomic) IBOutlet CustomTableView *tableView;
  28. - (id)initFromNib;
  29. @end