27 lines
635 B
Objective-C
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
|