Files
peko-ios/YuMi/Modules/YMMonents/View/SubViews/XPMonentsPhotoView.h
2023-08-10 18:44:46 +08:00

27 lines
635 B
Objective-C

//
// YMMonentsPhotoView.h
// YUMI
//
// Created by YUMI on 2022/5/12.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class MonentsPicInfoModel, XPMonentsPhotoView;
@protocol XPMonentsPhotoViewDelegate <NSObject>
- (void)xPMonentsPhotoView:(XPMonentsPhotoView *)view didClickImage:(NSInteger)index;
@end
@interface XPMonentsPhotoView : UIView
///发布的内容
@property (nonatomic,copy) NSArray<MonentsPicInfoModel *> *dynamicResList;
@property (nonatomic,copy) NSArray<MonentsPicInfoModel *> *mineDynamicResList;
///代理
@property (nonatomic,weak) id<XPMonentsPhotoViewDelegate> delegate;
@end
NS_ASSUME_NONNULL_END