1234567891011121314151617181920 |
- //
- // BUDAnimationTool.h
- // BUDemo
- //
- // Created by wangyanlin on 2020/6/18.
- // Copyright © 2020 bytedance. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- #import <BUAdSDK/BUAdSDK.h>
- typedef void (^BUDAnimationCompletion)(void);
- NS_ASSUME_NONNULL_BEGIN
- @interface BUDAnimationTool : NSObject
- + (instancetype)sharedInstance;
- - (void)transitionFromView:(BUSplashAdView *)fromView toView:(BUSplashZoomOutView *)toView;
- @end
- NS_ASSUME_NONNULL_END
|