これはおそらくばかげた質問ですが、ChartBoost 広告がユーザーに表示されたときに通知を受け取りたいです。chartboost.h を見ると、いくつかのデリゲートがあり、特に興味深いのは didDisplayInterstatial です。
ただし、これを実装する方法、またはこれに使用されるかどうかはわかりません。
chartboost.h
@protocol ChartboostDelegate <NSObject>
@optional
/// All of the delegate methods below are optional.
/// Implement them only when you need to more finely control Chartboost's behavior.
/// Called before requesting an interestitial from the back-end
- (BOOL)shouldRequestInterstitial:(CBLocation)location;
// Called when an interstitial has been displayed on the screen.
- (void)didDisplayInterstitial:(CBLocation)location;
ありがとう