Files
my_yuyin/QXLive/Mine(音域)/View/个人主页/相册/QXPhotoPasswordView.h
2025-09-22 18:48:29 +08:00

23 lines
488 B
Objective-C

//
// QXPhotoPasswordView.h
// QXLive
//
// Created by 启星 on 2025/5/29.
//
#import <UIKit/UIKit.h>
#import "QXPhotoModel.h"
NS_ASSUME_NONNULL_BEGIN
@protocol QXPhotoPasswordViewDelegate <NSObject>
@optional
-(void)didClickCommitWithPassword:(NSString*)password model:(QXPhotoModel*)model;
@end
@interface QXPhotoPasswordView : UIView
@property (nonatomic,strong)QXPhotoModel *model;
@property (nonatomic,weak)id<QXPhotoPasswordViewDelegate>delegate;
@end
NS_ASSUME_NONNULL_END