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.

41 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