FBInterstitialAdDelegate
Non è disponibile una versione più recente di questa classe. Controlla la versione più recente.

The methods declared by the FBInterstitialAdDelegate protocol allow the adopting delegate to respond to messages from the FBInterstitialAd class and thus respond to operations such as whether the interstitial ad has been loaded, user has clicked or closed the interstitial.

Extends Protocol:NSObject
Declared in:FBInterstitialAd.h
Metodi di istanza
interstitialAd:didFailWithError:

Sent when an FBInterstitialAd failes to load an ad.

ParametroDescrizione
interstitialAd

An FBInterstitialAd object sending the message.

error

An error object containing details of the error.

- (void)
interstitialAd: (FBInterstitialAd *)interstitialAd
didFailWithError: (NSError *)error;
Tipo dichiarato in: FBInterstitialAd.h
interstitialAdDidClick:

Sent after an ad in the FBInterstitialAd object is clicked. The appropriate app store view or app browser will be launched.

ParametroDescrizione
interstitialAd

An FBInterstitialAd object sending the message.

- (void) interstitialAdDidClick:(FBInterstitialAd *)interstitialAd;
Tipo dichiarato in: FBInterstitialAd.h
interstitialAdDidClose:

Sent after an FBInterstitialAd object has been dismissed from the screen, returning control to your application.

ParametroDescrizione
interstitialAd

An FBInterstitialAd object sending the message.

- (void) interstitialAdDidClose:(FBInterstitialAd *)interstitialAd;
Tipo dichiarato in: FBInterstitialAd.h
interstitialAdDidLoad:

Sent when an FBInterstitialAd successfully loads an ad.

ParametroDescrizione
interstitialAd

An FBInterstitialAd object sending the message.

- (void) interstitialAdDidLoad:(FBInterstitialAd *)interstitialAd;
Tipo dichiarato in: FBInterstitialAd.h
interstitialAdWillClose:

Sent immediately before an FBInterstitialAd object will be dismissed from the screen.

ParametroDescrizione
interstitialAd

An FBInterstitialAd object sending the message.

- (void) interstitialAdWillClose:(FBInterstitialAd *)interstitialAd;
Tipo dichiarato in: FBInterstitialAd.h
interstitialAdWillLogImpression:

Sent immediately before the impression of an FBInterstitialAd object will be logged.

ParametroDescrizione
interstitialAd

An FBInterstitialAd object sending the message.

- (void) interstitialAdWillLogImpression:(FBInterstitialAd *)interstitialAd;
Tipo dichiarato in: FBInterstitialAd.h