0

これはおそらくばかげた質問ですが、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;

ありがとう

4

1 に答える 1

0

これらのデリゲート/プロトコル メソッドの使用方法を尋ねていますか?

もしそうなら、それは Apple の iOS チュートリアルhttps://developer.apple.com/videos/とフォーラムで非常によくカバーされています。

于 2014-11-07T13:28:45.240 に答える