32 lines
958 B
Objective-C
32 lines
958 B
Objective-C
//
|
|
// QXUserPhotosView.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/5/29.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "JXPagerView.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXUserPhotosView : UIView<JXPagerViewListViewDelegate>
|
|
@property (nonatomic, strong) UICollectionView *collectionView;
|
|
@property (nonatomic, copy) void(^listScrollCallback)(UIScrollView *scrollView);
|
|
@property (nonatomic,strong)NSString *user_id;
|
|
|
|
@end
|
|
|
|
|
|
@interface QXUserPhotosCell : UICollectionViewCell
|
|
@property (nonatomic,strong)UIImageView *photoImageView;
|
|
@property (nonatomic,strong)UILabel *titleLabel;
|
|
@property (nonatomic,strong)UILabel *countLabel;
|
|
@property (nonatomic,strong)UIImageView *lockImageView;
|
|
@property (nonatomic,strong)UIVisualEffectView *blurView;
|
|
@property (nonatomic,assign)BOOL isLock;
|
|
@property (nonatomic,strong)UIButton *selectedBtn;
|
|
@property (nonatomic,strong)UIView *selectedBgView;
|
|
@property (nonatomic,assign)BOOL selectedState;
|
|
@end
|
|
NS_ASSUME_NONNULL_END
|