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
ทรัพย์สิน
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.

@property (nonatomic, readonly, strong, nonnull) UIViewController *viewControllerForPresentingModalView;
ให้คำรับรองไว้ใน: 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