20 lines
481 B
Objective-C
20 lines
481 B
Objective-C
//
|
|
// QXUserDynamicView.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/5/21.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "JXPagerView.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXUserDynamicView : UIView<JXPagerViewListViewDelegate>
|
|
@property (nonatomic, strong) UITableView *tableView;
|
|
@property (nonatomic,strong)NSString *user_id;
|
|
@property (nonatomic, copy) void(^listScrollCallback)(UIScrollView *scrollView);
|
|
- (instancetype)initWithOffsetY:(CGFloat)offsety;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|