22 lines
384 B
Objective-C
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
|