| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //
- // 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 <NSObject>
- //
- //- (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
|