BogoSquarePopView.h 553 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // BogoSquarePopView.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/7/31.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "BogoDrawView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface BogoSquarePopView : BGBaseView<UITableViewDelegate,UITableViewDataSource>
  12. @property(nonatomic, strong) BogoDrawView *topView;
  13. @property(nonatomic, strong) UITableView *tableView;
  14. @property(nonatomic, strong) NSArray *listArr;
  15. @property(nonatomic, copy) void (^clickIndexBlock)(NSInteger index);
  16. @end
  17. NS_ASSUME_NONNULL_END