CSJSplashBottomView.h 667 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // CSJSplashBottomView.h
  3. // CSJAdSDK
  4. //
  5. // Created by wangyanlin on 2021/3/7.
  6. // Copyright © 2021 bytedance. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CSJMaterialMeta+Private.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. typedef NS_ENUM(NSUInteger, BUSplashBottomMaskType) {
  12. BUSplashBottomMaskTypeFull = 0,
  13. BUSplashBottomMaskTypeHalf = 1
  14. };
  15. /// 开屏底部合规容器
  16. @interface CSJSplashBottomView : UIView
  17. @property (nonatomic, copy) void(^actionBlock)(void);
  18. - (instancetype)initWithMaterialMeta:(CSJMaterialMeta *)materialMeta;
  19. - (CGRect)bottomMaskFrameWithCoverFrame:(CGRect)coverFrame;
  20. - (void)startAnimating;
  21. @end
  22. NS_ASSUME_NONNULL_END