1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| //
| // view3.h
| // test
| //
| // Created by 博爱 on 16/5/11.
| // Copyright © 2016年 博爱之家. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
|
| typedef void (^selectRowBlock)(UITableView *tableView, NSIndexPath *indexPath, NSArray *dataArray);
|
| @interface view3 : UIView
|
| @property (nonatomic, strong) UITableView *tableView;
| @property (nonatomic, copy ) selectRowBlock selectBlock;
|
| - (instancetype)initWithFrame:(CGRect)frame withSelectRowBlock:(selectRowBlock)selectRowBlock;
|
|
| @end
|
|