Files
midi_ios/QXLive/Mine(音域)/View/个人主页/相册/QXPhotosDetailTopView.h

24 lines
510 B
C
Raw Normal View History

2025-08-14 10:07:49 +08:00
//
// QXPhotosDetailTopView.h
// QXLive
//
// Created by 启星 on 2025/6/5.
//
#import <UIKit/UIKit.h>
#import "QXPhotoModel.h"
NS_ASSUME_NONNULL_BEGIN
@protocol QXPhotosDetailTopViewDelegate <NSObject>
@optional
-(void)didClickEditWith:(QXPhotoDetailModel*)model;
@end
@interface QXPhotosDetailTopView : UIView
@property (nonatomic,assign)BOOL isMe;
@property (nonatomic,weak)id<QXPhotosDetailTopViewDelegate>delegate;
@property (nonatomic,strong)QXPhotoDetailModel *model;
@end
NS_ASSUME_NONNULL_END