| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // MOSquareBaseCollectionView.h
- // MiMoLive
- //
- // Created by SuperC on 2024/7/31.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^MOHomePageBeginScrollBlock)(void);
- @interface MOSquareBaseCollectionView : UIView<JXCategoryListContentViewDelegate>
- /** 是否为关注界面 */
- @property (nonatomic, assign) BOOL isFollow;
- @property (nonatomic, weak) UIViewController *homeVC;
- /** 关注页面数据 房间类型(0=全部,1=视频直播,2=语音直播) */
- @property (nonatomic, assign) NSInteger roomType;
- /** 关注页面数据 排序类型(1=最新关注,2=最近常看)*/
- @property (nonatomic, assign) NSInteger sortType;
- /** 游标 */
- @property (nonatomic, copy) NSString *next;
- /** 国家 */
- @property (nonatomic, copy) NSString *countryString;
- /** 查询类型(0=全部,1=最新直播间查询,2=视频直播,3=语音直播,4=新人主播,5=附近查询,6=家族查询) */
- @property (nonatomic, assign) NSInteger searchType;
- /** 经度 */
- @property (nonatomic, assign) double lat;
- /** 维度 */
- @property (nonatomic, assign) double lng;
- @property (nonatomic, assign) BOOL isNeedWillRefresh;
- @property (nonatomic, copy) MOHomePageBeginScrollBlock beginScrollBlock;//首页滑动block
- - (instancetype)initWithFrame:(CGRect)frame AndIsFollow:(BOOL)follow;
- - (void)toBeginRefresh;
- - (void)showEnterRoomGuideView;
- @end
- NS_ASSUME_NONNULL_END
|