1234567891011121314151617 |
- //
- // YMHomePageBannerView.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/12.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "YMBaseView.h"
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^BannerViewHeightBlock)(CGFloat bannerViewHeight);
- @interface YMHomePageBannerView : YMBaseView
- @property (nonatomic, copy) BannerViewHeightBlock bannerViewHeightBlock;
- @end
- NS_ASSUME_NONNULL_END
|