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.
 
 
 
 

33 lines
585 B

//
// DeleteTrackTableViewCell.h
// watch
//
// Created by WeiChaoZheng on 2018/1/27.
// Copyright © 2018年 xTT. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface DeleteTrackTableViewCell : UITableViewCell
/**
选择
*/
@property (strong, nonatomic) IBOutlet UIImageView *selectImageView;
/**
select图片width
*/
@property (strong, nonatomic) IBOutlet NSLayoutConstraint *selectImageWidth;
/**
时间Label
*/
@property (strong, nonatomic) IBOutlet UILabel *timeLabel;
/**
数量Label
*/
@property (strong, nonatomic) IBOutlet UILabel *countLabel;
@end