AdNative.h 368 B

12345678910111213141516171819202122232425262728
  1. //
  2. // AdNative.h
  3. // XenonSDK
  4. //
  5. // Created by fq on 2020/12/24.
  6. // Copyright © 2020 SAGESSE. All rights reserved.
  7. //
  8. #import "AdBase.h"
  9. /**
  10. 原生广告
  11. */
  12. @interface AdNative : AdBase
  13. ///打开原生广告
  14. -(void)showNativeWithID:(NSString *)adId X:(int)x Y:(int)y W:(int)w H:(int)h;
  15. ///关闭
  16. -(void)close;
  17. //Refreshes the ad.
  18. -(void)refreshAd;
  19. @end