Translate_offine/HDwallpaper/Tool/CustomTableView.h
2024-07-23 15:14:59 +08:00

22 lines
384 B
Objective-C

//
// CustomTableView.h
// HD wallpaper
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface CustomTableView : UITableView
@property (nonatomic, strong) UIRefreshControl *refreshControl;
@property (nonatomic, copy) void (^onRefresh)(void);
@property (nonatomic, copy) void (^onLoadMore)(void);
- (void)endRefreshing;
- (void)endLoadingMore;
@end
NS_ASSUME_NONNULL_END