在每 x 次加载 viewdidload 时显示插页式广告

Showing interstitial ad on every x loads of viewdidload

我想弄清楚,在每 x 次加载 viewdidload 调用时显示一个插页式广告。 当我的 viewdidload 调用时,我正在加载该广告。但是我想加载它,当viewdidload调用x的时候。 任何帮助将不胜感激。这是我的代码;

    class DetailController: UIViewController, GADInterstitialDelegate {

    //Admob
    ...
    ...
    var fullScreenAds : GADInterstitial!

    //Interstitial-Ad
    func createAndLoadInterstitial() -> GADInterstitial? {
        fullScreenAds = GADInterstitial(adUnitID: myInterstitialID)
        guard let fullScreenAds = fullScreenAds else {
            return nil
        }
        let request = GADRequest()
        request.testDevices = [ kGADSimulatorID ]
        fullScreenAds.load(request)
        fullScreenAds.delegate = self

        return fullScreenAds
    }

    func interstitialDidReceiveAd(_ ad: GADInterstitial) {
        print("Ads loaded.")
        ad.present(fromRootViewController: self)
    }

    func interstitialDidFail(toPresentScreen ad: GADInterstitial) {
        print("Ads not loaded.")
    }

    //MARK: View functions
    override func viewDidLoad() {
        super.viewDidLoad()

        ......

        SVProgressHUD.show()
        imageView.af_setImage(withURL: URL(string: pic.largeImageURL!)!, placeholderImage: imgPlaceHolder, filter: nil, progress: nil, progressQueue: DispatchQueue.main, imageTransition: .crossDissolve(0.2), runImageTransitionIfCached: true) { (data) in
            SVProgressHUD.dismiss()
        }

        scrollView.delegate = self
        setupScrollView()
        setupGestureRecognizers()
        setupBanner()

        self.fullScreenAds = createAndLoadInterstitial()
    }
}

取1个全局变量viewDidLoadCount并设置为0.

假设您希望每 5 viewDidLoad() 展示一次广告。所以,

在每个 viewDidLoad() 方法中将 viewDidLoadCount 加 1 并检查

//取全局变量

var viewDidLoadCount : Int = 0
override func viewDidLoad() {
    super.viewDidLoad()

    viewDidLoadCount+=1
    if viewDidLoadCount == 5 {
        //send post notification to your main viewcontroller in which you have done code of ad delegate.
    }
}

您可以使用 UserDefaults 来存储每次加载视图时的计数。达到限制后,重置计数并展示广告。

示例代码:

class ViewController: UIViewController {

    private let adFrequency = 5
    private let userDefaults: UserDefaults = .standard
    private let defaultsKey = "passwordScreenViewCount"

    override func viewDidLoad() {
        super.viewDidLoad()

        let count = userDefaults.integer(forKey: defaultsKey)
        if count + 1 >= adFrequency {
            userDefaults.set(0, forKey: defaultsKey)
            // show the ad
        } else {
            userDefaults.set(count + 1, forKey: defaultsKey)
        }
    }
}