0

我是 swift 和 iOS 编程的新手。我想在我的应用中添加 Admob 同意/GDPR 选项,因此我设置了一个广告框并可以显示测试添加,但接下来需要添加同意选项。

我已阅读 https://developers.google.com/admob/ios/eu-consent

但我不清楚,任何人都可以向我展示一个逐步执行此操作的代码示例,或者将我指向已完成的 GitHub 源代码。

谢谢

4

1 回答 1

0

您能否举一个您尝试过但对您不起作用的示例?

由于我无法查看您的代码示例来了解您在做什么或不做什么,我将根据文档给出一个示例。

import PersonalizedAdConsent

...

class ViewController: UIViewController {

  override func viewDidLoad() {
    super.viewDidLoad()

    PACConsentInformation.sharedInstance.
    requestConsentInfoUpdate(
    forPublisherIdentifiers: ["pub-0123456789012345"])
    {(_ error: Error?) -> Void in
      if let error = error {
        // Consent info update failed.
      } else {
        // Consent info update succeeded. The shared PACConsentInformation
        // instance has been updated.
      }
    }

guard let privacyUrl = URL(string: "https://www.your.com/privacyurl"),
  let form = PACConsentForm(applicationPrivacyPolicyURL: privacyUrl) else {
    print("incorrect privacy URL.")
    return
}
form.shouldOfferPersonalizedAds = true
form.shouldOfferNonPersonalizedAds = true
form.shouldOfferAdFree = true


form.load {(_ error: Error?) -> Void in
  print("Load complete.")
  if let error = error {
    // Handle error.
    print("Error loading form: \(error.localizedDescription)")
  } else {
    // Load successful.
  }
}

//Finally present the consent form
form.present(from: self) { (error, userPrefersAdFree) in
      if let error = error {
        // Handle error.
      } else if userPrefersAdFree {
        // User prefers to use a paid version of the app.
      } else {
        // Check the user's consent choice.
        let status =
             PACConsentInformation.sharedInstance.consentStatus
      }
    }

      } 
于 2020-02-17T00:20:36.093 回答