1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//
// CalibrationDetailCollectionCell.h
// Lighting
//
// Created by 曹云霄 on 2017/3/15.
// Copyright © 2017年 上海勾芒科技有限公司. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "CustomTOForumtypeEntity.h"
@interface CalibrationDetailCollectionCell : UICollectionViewCell
/**
月份
*/
@property (weak, nonatomic) IBOutlet UILabel *monthLabel;
/**
下标
*/
@property (nonatomic,strong) NSIndexPath *indexPath;
/**
刷新cell
@param entity 数据源
*/
- (void)refreshCell:(CustomTOForumtypeEntity *)entity;
#pragma mark -时间轴选中状态
- (void)timeLineSelected;
#pragma mark -时间轴默认状态
- (void)timeLineDefauld;
#pragma mark -时间轴不可选状态
- (void)timeLineNotChoose;
@end