在android中,您可以定义一个类并使用“Application”类进行扩展。在此类中,您可以声明应用程序级别的字段和方法。在此类中,您还可以访问应用程序上下文,并且有一个在应用程序启动时调用的方法。示例如下:

public class App extends Application {

    private static Context sContext;

    private static InterstitialAd mInterstitialAd;

    public static Context getAppContext() {
        return sContext;
    }


    public static InterstitialAd getInterstitialAd() {
        return mInterstitialAd;
    }

    @Override
    public void onCreate() {
        super.onCreate();

        sContext = getApplicationContext();

        MobileAds.initialize(this, sContext.getString(R.string.ADMOB_APP_ID));

        mInterstitialAd = new InterstitialAd(this);
        mInterstitialAd.setAdUnitId(sContext.getString(R.string.interstitial));
        mInterstitialAd.loadAd(new AdRequest.Builder().build());

        mInterstitialAd.setAdListener(new AdListener() {
            @Override
            public void onAdClosed() {
                mInterstitialAd.loadAd(new AdRequest.Builder().build());
            }
        });

    }

}

IOS中对应的是什么?

最佳答案

在iOS中,您可以通过以下方法在AppDelegate File中进行配置。

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
          //Here You Can Configure
            return true
}

07-28 04:45