FBInterstitialAdDelegate
이 클래스의 최신 버전을 사용할 수 있습니다. 확인해보세요 최신 버전.

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
인스턴스 메서드
interstitialAd:didFailWithError:

Sent when an FBInterstitialAd failes to load an ad.

매개변수설명
interstitialAd

An FBInterstitialAd object sending the message.

error

An error object containing details of the error.

- (void)
interstitialAd: (FBInterstitialAd *)interstitialAd
didFailWithError: (NSError *)error;
정의된 값: FBInterstitialAd.h
interstitialAdDidClick:

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

매개변수설명
interstitialAd

An FBInterstitialAd object sending the message.

- (void) interstitialAdDidClick:(FBInterstitialAd *)interstitialAd;
정의된 값: FBInterstitialAd.h
interstitialAdDidClose:

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

매개변수설명
interstitialAd

An FBInterstitialAd object sending the message.

- (void) interstitialAdDidClose:(FBInterstitialAd *)interstitialAd;
정의된 값: FBInterstitialAd.h
interstitialAdDidLoad:

Sent when an FBInterstitialAd successfully loads an ad.

매개변수설명
interstitialAd

An FBInterstitialAd object sending the message.

- (void) interstitialAdDidLoad:(FBInterstitialAd *)interstitialAd;
정의된 값: FBInterstitialAd.h
interstitialAdWillClose:

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

매개변수설명
interstitialAd

An FBInterstitialAd object sending the message.

- (void) interstitialAdWillClose:(FBInterstitialAd *)interstitialAd;
정의된 값: FBInterstitialAd.h
interstitialAdWillLogImpression:

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

매개변수설명
interstitialAd

An FBInterstitialAd object sending the message.

- (void) interstitialAdWillLogImpression:(FBInterstitialAd *)interstitialAd;
정의된 값: FBInterstitialAd.h