NYADViewManager.h 667 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // NYADViewManager.h
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2023/7/25.
  6. // Copyright © 2023 JCZ. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <CXHAdSDK-Core/CXHAdSDK.h>
  10. #import <CXHAdSDK-Core/CXHAdSDKServiceAdView.h>
  11. #import <CXHAdSDK-Kit/CXHUtilsKit.h>
  12. NS_ASSUME_NONNULL_BEGIN
  13. #define NY_AD_MANAGER [NYADViewManager sharedManager]
  14. @interface NYADViewManager : NSObject<CXHSDKServiceAdViewDelegate>
  15. + (NYADViewManager *)sharedManager;
  16. - (void)ny_configureADSuiSDK;
  17. - (BOOL)isFirstAppLoad;
  18. - (void)requestAgreePrivacy;
  19. - (void)loadAdWithPosid:(NSString *)posid customView:( UIView * _Nullable )customView;
  20. @end
  21. NS_ASSUME_NONNULL_END