SPSBPopupViewController.h 613 B

12345678910111213141516171819202122232425262728
  1. //
  2. // SPSBPopupViewController.h
  3. // 我的社保
  4. //
  5. // Created by shanp on 2021/4/26.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface SPSBPopupViewController : UIViewController
  10. - (void)viewDidLoad NS_REQUIRES_SUPER;
  11. - (void)viewWillAppear:(BOOL)animated NS_REQUIRES_SUPER;
  12. - (void)viewDidAppear:(BOOL)animated NS_REQUIRES_SUPER;
  13. - (void)viewWillDisappear:(BOOL)animated NS_REQUIRES_SUPER;
  14. - (void)viewDidDisappear:(BOOL)animated NS_REQUIRES_SUPER;
  15. - (void)setupAnimation;
  16. - (void)showAnimation;
  17. - (void)hideAnimation:(void(^_Nullable)(BOOL finished))completion;
  18. @end
  19. NS_ASSUME_NONNULL_END