JLSelectView.h 465 B

12345678910111213141516
  1. //
  2. // DemoCustomView2.h
  3. // Demo
  4. //
  5. // Created by 路 on 2019/2/20.
  6. // Copyright © 2019年 路. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "DSHPopupContainer.h"
  10. #import "JLSelectModel.h"
  11. typedef void (^ReturnModelBlock)(JLSelectModel *model, NSIndexPath *indexPath);
  12. @interface JLSelectView : UIView <DSHCustomPopupView>
  13. @property(nonatomic, strong) NSArray *dataArray; // 数据
  14. @property(nonatomic, copy) ReturnModelBlock returnModelBlock;
  15. @end