1234567891011121314151617181920212223242526272829 |
- //
- // NYADViewManager.h
- // jiaPei
- //
- // Created by Ning.ge on 2023/7/25.
- // Copyright © 2023 JCZ. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <CXHAdSDK-Core/CXHAdSDK.h>
- #import <CXHAdSDK-Core/CXHAdSDKServiceAdView.h>
- #import <CXHAdSDK-Kit/CXHUtilsKit.h>
- NS_ASSUME_NONNULL_BEGIN
- #define NY_AD_MANAGER [NYADViewManager sharedManager]
- @interface NYADViewManager : NSObject<CXHSDKServiceAdViewDelegate>
- + (NYADViewManager *)sharedManager;
- - (void)ny_configureADSuiSDK;
- - (BOOL)isFirstAppLoad;
- - (void)requestAgreePrivacy;
- - (void)loadAdWithPosid:(NSString *)posid customView:( UIView * _Nullable )customView;
- @end
- NS_ASSUME_NONNULL_END
|