// // EidtDeviceContactWithDeviceTableViewCell.h // tongxin // // Created by WeiChaoZheng on 2018/6/21. // Copyright © 2018年 xTT. All rights reserved. // #import #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