CommunityView.h
711 字节
//
// CommunityView.h
// DreamSleep
//
// Created by peter on 2022/9/20.
//
#import <UIKit/UIKit.h>
@protocol CommunityViewDelegate <NSObject>
/// 点击社区头部模块
/// @param index 模块标识
- (void)tapCommunityHeaderModule:(NSInteger)index;
/// 获取社区动态列表请求
- (void)getDynamicListRequest:(BOOL)loadMore;
/// 点击发布按钮
- (void)publishLogicDeal;
@end
NS_ASSUME_NONNULL_BEGIN
/// 社区主视图
@interface CommunityView : UIView
@property (nonatomic, weak) id<CommunityViewDelegate> delegate;
- (instancetype)initWithDelegate:(id<CommunityViewDelegate>)delegate;
/// 更新社区动态
- (void)updateCommunityMoments:(BOOL)loadMore;
@end
NS_ASSUME_NONNULL_END