BogoHomeViewController.h 704 B

123456789101112131415161718192021222324
  1. //
  2. // BogoHomeViewController.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/3/18.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MLMSegmentManager.h"
  10. #import "BogoHomeTopView.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface BogoHomeViewController : UIViewController
  13. @property (nonatomic, assign) MLMSegmentHeadStyle style;
  14. @property (nonatomic, assign) MLMSegmentLayoutStyle layout;
  15. @property (nonatomic, strong) MLMSegmentHead *segHead;
  16. @property (nonatomic, strong) MLMSegmentScroll *segScroll;
  17. @property(nonatomic, weak) id<BogoHomeTopViewDelegate> topViewdelegate;
  18. @property(nonatomic, copy) void (^clickSquareBtnBlock)(NSInteger index);
  19. @end
  20. NS_ASSUME_NONNULL_END