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.
25 lines
644 B
25 lines
644 B
1 year ago
|
//
|
||
|
// EditDeviceHeadTableViewCell.h
|
||
|
// tongxin
|
||
|
//
|
||
|
// Created by WeiChaoZheng on 2018/6/21.
|
||
|
// Copyright © 2018年 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
#import "Device.h"
|
||
|
// 设备资料 和 添加设备 的头部 cell
|
||
|
@interface EditDeviceHeadTableViewCell : UITableViewCell
|
||
|
@property (strong, nonatomic) UIImageView *deviceHeadImageView;
|
||
|
@property (strong, nonatomic) IBOutlet UILabel *ATitleLabel;
|
||
|
@property (strong, nonatomic) IBOutlet UIView *lineView;
|
||
|
|
||
|
/**
|
||
|
设备的信息model
|
||
|
*/
|
||
|
@property (strong, nonatomic) Device * device;
|
||
|
|
||
|
-(void)setDevice:(Device*)device WithStatus:(BOOL)isAdd isEdting:(BOOL)isEdit;
|
||
|
|
||
|
@end
|