// // YMRankingListView.h // MSYOUPAI // // Created by YoMi on 2024/2/14. // Copyright © 2024 MS. All rights reserved. // #import "YMBaseView.h" NS_ASSUME_NONNULL_BEGIN @interface YMRankingListView : YMBaseView /// 滚动回调,注:不写这个会在Controller层滑动一瞬间到顶部。无法理解的话看JXPagerViewListViewDelegate @property (nonatomic, copy) void(^scrollCallback)(UIScrollView *scrollView); /// 内容滚动视图 @property (nonatomic, strong) UIScrollView *contentScrollView; @end NS_ASSUME_NONNULL_END