// // CustomTableView.h // HD wallpaper #import 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