123456789101112131415161718192021 |
- //
- // UITableView+SPSBDefault.h
- // 我的社保
- //
- // Created by shanp on 2021/4/21.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface UITableView (SPSBDefault)
- - (void)setDefaultFootViewWithError:(nullable NSError *)error image:(nullable UIImage *)image height:(CGFloat)height action:(void(^_Nullable)(void))action;
- - (void)removeDefaultFootView;
- @end
- NS_ASSUME_NONNULL_END
|