1234567891011121314151617181920 |
- //
- // XMGRoolLinghtVIew.h
- // testTableVIew
- //
- // Created by 123 on 2020/4/30.
- // Copyright © 2020 DR. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "packageRoolCell.h"
-
- typedef void(^RoolCellBlock)(NSIndexPath *index);
- @interface XMGRoolLinghtVIew : UIView
- +(instancetype)XIBXMGRoolLinghtView;
- @property (nonatomic,copy) RoolCellBlock roolCellBlock;
- @property (nonatomic,strong) NSMutableArray *dataArr;
- @end
-
|