12345678910111213141516 |
- //
- // DemoCustomView2.h
- // Demo
- //
- // Created by 路 on 2019/2/20.
- // Copyright © 2019年 路. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "DSHPopupContainer.h"
- #import "JLSelectModel.h"
- typedef void (^ReturnModelBlock)(JLSelectModel *model, NSIndexPath *indexPath);
- @interface JLSelectView : UIView <DSHCustomPopupView>
- @property(nonatomic, strong) NSArray *dataArray; // 数据
- @property(nonatomic, copy) ReturnModelBlock returnModelBlock;
- @end
|