You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
821 B
40 lines
821 B
// |
|
// EidtDeviceContactWithDeviceTableViewCell.h |
|
// tongxin |
|
// |
|
// Created by WeiChaoZheng on 2018/6/21. |
|
// Copyright © 2018年 xTT. All rights reserved. |
|
// |
|
|
|
#import <UIKit/UIKit.h> |
|
#import "Device.h" |
|
|
|
@interface EidtDeviceContactWithDeviceTableViewCell : UITableViewCell |
|
/** |
|
关系图片 |
|
*/ |
|
@property (strong, nonatomic) IBOutlet UIImageView *contactImageView; |
|
|
|
/** |
|
关系 UITextField 默认不可编辑 |
|
*/ |
|
@property (strong, nonatomic) IBOutlet UITextField *contactWDLabel; |
|
/** |
|
关系的View |
|
*/ |
|
@property (strong, nonatomic) IBOutlet UIView *contactView; |
|
|
|
|
|
/** |
|
解绑按钮 |
|
*/ |
|
@property (strong, nonatomic) IBOutlet UIButton *unbundlingBtn; |
|
|
|
|
|
/** |
|
设备的信息model |
|
*/ |
|
@property (strong, nonatomic) Device * device; |
|
|
|
-(void)setDevice:(Device*)device WithStatus:(BOOL)isAdd isEdting:(BOOL)isEdting; |
|
@end
|
|
|