12345678910111213141516171819202122 |
- //
- // UIViewController+SPSBDefault.h
- // 我的社保
- //
- // Created by shanp on 2021/4/21.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface UIViewController (SPSBDefault)
- @property (readonly, nullable) UIView *spsb_defaultView;
- - (void)setDefaultViewWithError:(nullable NSError *)error image:(nullable UIImage *)image action:(void(^_Nullable)(void))action;
- - (void)removeDefaultView;
- @end
- NS_ASSUME_NONNULL_END
|