| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // DeviceSelectPopupView.h
- // kneet2
- //
- // Created by Jason Lee on 10/12/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- @import UIKit;
- #import "CustomAlertView.h"
- #import "JDViewController.h"
- @class CustomImageView;
- @class CustomCheckBox;
- @class CustomRadioButton;
- @interface DeviceSelectPopupView : CustomAlertView
- @property (weak, nonatomic) NSMutableArray<ItemModel> *refDevices;
- @property (weak, nonatomic, readonly) NSArray<ItemModel> *selectedDevices;
- @property (strong, nonatomic) NSString *typeCode;
- @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
- - (id)initFromNib;
- @end
- @interface DeviceSelectPopupTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomImageView *imgvDevice;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDeviceName;
- @property (weak, nonatomic) IBOutlet CustomCheckBox *chkSelect;
- @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoSelect;
- @end
|