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

The methods declared by the FBAdViewDelegate protocol allow the adopting delegate to respond to messages from the FBAdView class and thus respond to operations such as whether the ad has been loaded, the person has clicked the ad.

Extends Protocol:NSObject
Declared in:FBAdView.h
인스턴스 메서드
adView:didFailWithError:

Sent after an FBAdView fails to load the ad.

매개변수설명
adView

An FBAdView object sending the message.

error

An error object containing details of the error.

- (void)
adView: (FBAdView *)adView
didFailWithError: (NSError *)error;
정의된 값: FBAdView.h
adViewDidClick:

Sent after an ad has been clicked by the person.

매개변수설명
adView

An FBAdView object sending the message.

- (void) adViewDidClick:(FBAdView *)adView;
정의된 값: FBAdView.h
adViewDidFinishHandlingClick:

When an ad is clicked, the modal view will be presented. And when the user finishes the interaction with the modal view and dismiss it, this message will be sent, returning control to the application.

매개변수설명
adView

An FBAdView object sending the message.

- (void) adViewDidFinishHandlingClick:(FBAdView *)adView;
정의된 값: FBAdView.h
adViewDidLoad:

Sent when an ad has been successfully loaded.

매개변수설명
adView

An FBAdView object sending the message.

- (void) adViewDidLoad:(FBAdView *)adView;
정의된 값: FBAdView.h
adViewWillLogImpression:

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

매개변수설명
adView

An FBAdView object sending the message.

- (void) adViewWillLogImpression:(FBAdView *)adView;
정의된 값: FBAdView.h
viewControllerForPresentingModalView

Asks the delegate for a view controller to present modal content, such as the in-app browser that can appear when an ad is clicked.

- (UIViewController *) viewControllerForPresentingModalView;
정의된 값: FBAdView.h