UITableView+SPSBDefault.h 397 B

123456789101112131415161718192021
  1. //
  2. // UITableView+SPSBDefault.h
  3. // 我的社保
  4. //
  5. // Created by shanp on 2021/4/21.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface UITableView (SPSBDefault)
  10. - (void)setDefaultFootViewWithError:(nullable NSError *)error image:(nullable UIImage *)image height:(CGFloat)height action:(void(^_Nullable)(void))action;
  11. - (void)removeDefaultFootView;
  12. @end
  13. NS_ASSUME_NONNULL_END