BogoHomeViewController.h 604 B

12345678910111213141516171819202122
  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. NS_ASSUME_NONNULL_BEGIN
  11. @interface BogoHomeViewController : UIViewController
  12. @property (nonatomic, assign) MLMSegmentHeadStyle style;
  13. @property (nonatomic, assign) MLMSegmentLayoutStyle layout;
  14. @property (nonatomic, strong) MLMSegmentHead *segHead;
  15. @property (nonatomic, strong) MLMSegmentScroll *segScroll;
  16. @property(nonatomic, copy) void (^clickSquareBtnBlock)(NSInteger index);
  17. @end
  18. NS_ASSUME_NONNULL_END