YMHomePageBannerView.h 389 B

1234567891011121314151617
  1. //
  2. // YMHomePageBannerView.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/12.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "YMBaseView.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^BannerViewHeightBlock)(CGFloat bannerViewHeight);
  11. @interface YMHomePageBannerView : YMBaseView
  12. @property (nonatomic, copy) BannerViewHeightBlock bannerViewHeightBlock;
  13. @end
  14. NS_ASSUME_NONNULL_END