Hibit_iOS/Pods/BaiduMobAdSDK/BaiduMobAdSDK.framework/Headers/BaiduMobAdNativeCouponFlipPageView.h
2024-06-07 11:41:02 +08:00

29 lines
674 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// BaiduMobAdNativeFlipPageView.h
// BaiduMobAdSDK
//
// Created by sunmingzhe01 on 2024/3/26.
// Copyright © 2024 Baidu Inc. All rights reserved.
//
#import <UIKit/UIKit.h>
@class BaiduMobAdNativeAdObject;
NS_ASSUME_NONNULL_BEGIN
@interface BaiduMobAdNativeCouponFlipPageView : UIView
/// 组件初始化默认组件大小154*154不建议修改组件frame可通过动画修改视图尺寸
/// @param adObject 广告对象
- (instancetype)initNativeCouponFlipPageView:(BaiduMobAdNativeAdObject *)adObject;
// 渲染组件
- (void)renderCouponFlipPageView;
// 销毁组件,回收内存
- (void)destoryCouponFlipPageView;
@end
NS_ASSUME_NONNULL_END