单军华
2018-05-04 25f409185a53e5e7beb17518a684298d92d31b3f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
//  view2.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 view2 : UIView
 
@property (nonatomic, strong) UITableView                  *tableView;
@property (nonatomic, copy  ) selectRowBlock                selectBlock;
 
- (instancetype)initWithFrame:(CGRect)frame withSelectRowBlock:(selectRowBlock)selectRowBlock;
 
 
 
@end