앱 대리인으로부터 삽입 광고를 구현했으며 정상적으로로드 중입니다. 이제 구매 버튼을 제거하고 혼란 스럽습니다.앱 위임 인앱 구매에서 삽입 광고를 삭제하는 방법
class AppDelegate: UIResponder, UIApplicationDelegate, GADInterstitialDelegate {
var window: UIWindow?
var myInterstitial: GADInterstitial!
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
// Override point for customization after application launch.
myInterstitial = createAndLoadInterstitial()
return true
}
func createAndLoadInterstitial()->GADInterstitial {
let interstitial = GADInterstitial(adUnitID: "xxxxx")
interstitial.delegate = self
interstitial.loadRequest(GADRequest())
return interstitial
}
func interstitialDidReceiveAd(ad: GADInterstitial!) {
print("interstitialDidReceiveAd")
}
func interstitial(ad: GADInterstitial!, didFailToReceiveAdWithError error: GADRequestError!) {
print(error.localizedDescription)
}
func interstitialDidDismissScreen(ad: GADInterstitial!) {
print("interstitialDidDismissScreen")
myInterstitial = createAndLoadInterstitial()
}
과의 ViewController :
let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
override func viewWillAppear(animated: Bool) {
appDelegate.myInterstitial?.presentFromRootViewController(self)
}
을 그리고 당신에 대한 혼란 무엇 : 위해
앱 구입에 구현하는 방법은 공식 문서를 참조 할 수 있습니다 배울? 진짜 질문은 무엇입니까? – Losiowaty
광고를 구매할 때 광고를 삭제하는 방법은 무엇입니까? – Done