19 lines
433 B
Objective-C
19 lines
433 B
Objective-C
//
|
|
// QXIntimateContentView.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/11/21.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "JXPagerView.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXIntimateContentView : UIView<JXPagerViewListViewDelegate>
|
|
@property (nonatomic,strong)NSString *userId;
|
|
@property (nonatomic, copy) void(^listScrollCallback)(UIScrollView *scrollView);
|
|
@property (nonatomic,assign)BOOL isTopFloating;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|