使用 iOS 示例项目 2.5:http: //google-mobile-dev.googlecode.com/files/InterstitialExample_iOS_2.5.zip
在 中MainController.m
,我添加了两个方法来调用showInterstitial
这样的方法,每次当应用程序从后台进入前台时,例如
- (void) viewDidLoad {
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(appWillEnterForegroundNotification) name:UIApplicationWillEnterForegroundNotification object:nil];
}
- (void) appWillEnterForegroundNotification{
[self showInterstitial:nil];
}
第一种方法是为视图控制器注册回调以接收进入前台通知,第二种方法showInterstitial
在发生这种情况时调用该方法。我可以看到该方法showInterstitial
确实被调用并且请求确实被触发,但是没有调用成功或错误回调。
任何的想法?