| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // MultiHomeHubViewController.h
- // OneCable
- //
- // Created by nComz on 2017. 5. 11..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomLabel;
- @class CustomImageView;
- @class CustomButton;
- @interface MultiHomeHubViewController : JDViewController
- @property BOOL closeWhenOperationComplite;
- @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
- @property (weak, nonatomic) IBOutlet CustomButton *btnClose;
- - (void)operationComplite ;
- @end
- @interface MultiHomeHubTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; // Hub Title 명
- @property (weak, nonatomic) IBOutlet CustomButton *btnHubDetail; // Hub 상세조회
- @property (weak, nonatomic) IBOutlet CustomImageView *imgNetwork; // 네트워크 이미지
- @property (weak, nonatomic) IBOutlet CustomImageView *imgDongle; // 동글연결 이미지
- @property (weak, nonatomic) IBOutlet CustomImageView *imgUpdate; // 업데이트 이미지
- @end
|