// // HomeHubSelectPopupView.h // OneCable // // Created by KaRam Kim on 2017. 5. 31.. // Copyright © 2017년 ntels. All rights reserved. // @import UIKit; #import "CustomAlertView.h" #import "JDViewController.h" @class CommonCode; @class CustomImageView; @class CustomCheckBox; @class CustomRadioButton; //@protocol HomeHubSelectPopupViewDelegate // //- (void)changeHomeHub:(DeviceModel *)info; // //@end @interface HomeHubSelectPopupTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomLabel *lbTitle; @property (weak, nonatomic) IBOutlet CustomLabel *lbSerial; @property (weak, nonatomic) IBOutlet CustomLabel *lbDesc; @property (weak, nonatomic) IBOutlet CustomRadioButton *btnRadio; @end @interface HomeHubSelectPopupView : CustomAlertView @property (copy, nonatomic) DeviceModel *selectedDeviceModel; @property (weak, nonatomic) IBOutlet CustomTableView *tableView; - (id)initFromNib; @end