// // TestNativeAdView.m // NativeAdvancedExample // // Created by fq on 2020/12/28. // Copyright © 2020 Google. All rights reserved. // #import "TestNativeAdView.h" #import "FqGameAd.h" @implementation TestNativeAdView ///刷新原生广告 - (IBAction)refreshAd:(id)sender { [[FqGameAd fqGameAD] refreshNative]; } ///关闭原生广告 - (IBAction)closeNative:(id)sender { [[FqGameAd fqGameAD] refreshNative]; [[FqGameAd fqGameAD] closeNative]; } @end