CSJSplashShakeComponentView.h 651 B

123456789101112131415161718192021222324
  1. //
  2. // BUSplashBottomShakeAnimationView.h
  3. // CSJAdSDK
  4. //
  5. // Created by bytedance on 2021/9/15.
  6. //
  7. #import "CSJSplashBottomBaseComponentView.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. typedef enum : NSUInteger {
  10. BUSplashShakeComponentViewLayoutTypeShake = 0,
  11. BUSplashShakeComponentViewLayoutTypeShakeAndTap = 1,
  12. } BUSplashShakeComponentViewLayoutType;
  13. @interface CSJSplashShakeComponentView : CSJSplashBottomBaseComponentView
  14. - (instancetype)initWithComponentConfiguration:(id<CSJSplashBottomViewInterface>)configuration
  15. layoutType:(BUSplashShakeComponentViewLayoutType)layoutType;
  16. @end
  17. NS_ASSUME_NONNULL_END