1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| //
| // childTableViewCell.h
| // XYRVideo
| //
| // Created by apple on 16/12/24.
| // Copyright © 2016年 yeshi. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
|
| typedef void(^clickCell)( NSIndexPath* );
|
| @interface childTableViewCell : UITableViewCell
|
| @property (nonatomic, strong) NSArray *cellData;
|
| @property (nonatomic, strong) NSIndexPath *tableViewindex;
|
| @property (nonatomic, copy) clickCell clickIndexpath;
|
| @end
|
|