BUDAnimationTool.h 486 B

1234567891011121314151617181920
  1. //
  2. // BUDAnimationTool.h
  3. // BUDemo
  4. //
  5. // Created by wangyanlin on 2020/6/18.
  6. // Copyright © 2020 bytedance. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. #import <BUAdSDK/BUAdSDK.h>
  11. typedef void (^BUDAnimationCompletion)(void);
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface BUDAnimationTool : NSObject
  14. + (instancetype)sharedInstance;
  15. - (void)transitionFromView:(BUSplashAdView *)fromView toView:(BUSplashZoomOutView *)toView;
  16. @end
  17. NS_ASSUME_NONNULL_END