FBMediaViewDelegate

The methods declared by the FBMediaViewDelegate protocol allow the adopting delegate to respond to messages from the FBMediaView class and thus respond to operations such as whether the media content has been loaded.

Extends Protocol:NSObject
Declared in:FBMediaView.h
インスタンスメソッド
mediaView:videoVolumeDidChange:

Sent when an FBMediaView has changed the playback volume of a video ad.

パラメーター説明
mediaView

An FBMediaView object sending the message.

volume

The current ad video volume (after the volume change).

- (void)
mediaView: (FBMediaView *)mediaView
videoVolumeDidChange: (float)volume;
宣言されたアイテム: FBMediaView.h
mediaViewDidExitFullscreen:

Sent after an FBMediaView has exited the fullscreen layout.

パラメーター説明
mediaView

An FBMediaView object sending the message.

- (void) mediaViewDidExitFullscreen:(FBMediaView *)mediaView;
宣言されたアイテム: FBMediaView.h
mediaViewDidLoad:

Sent when an FBMediaView has been successfully loaded.

パラメーター説明
mediaView

An FBMediaView object sending the message.

- (void) mediaViewDidLoad:(FBMediaView *)mediaView;
宣言されたアイテム: FBMediaView.h
mediaViewVideoDidComplete:

Sent when a video ad in an FBMediaView reaches the end of playback.

パラメーター説明
mediaView

An FBMediaView object sending the message.

- (void) mediaViewVideoDidComplete:(FBMediaView *)mediaView;
宣言されたアイテム: FBMediaView.h
mediaViewVideoDidPause:

Sent after a video ad in an FBMediaView enters a paused state.

パラメーター説明
mediaView

An FBMediaView object sending the message.

- (void) mediaViewVideoDidPause:(FBMediaView *)mediaView;
宣言されたアイテム: FBMediaView.h
mediaViewVideoDidPlay:

Sent after a video ad in an FBMediaView enters a playing state.

パラメーター説明
mediaView

An FBMediaView object sending the message.

- (void) mediaViewVideoDidPlay:(FBMediaView *)mediaView;
宣言されたアイテム: FBMediaView.h
mediaViewWillEnterFullscreen:

Sent just before an FBMediaView will enter the fullscreen layout.

パラメーター説明
mediaView

An FBMediaView object sending the message.

- (void) mediaViewWillEnterFullscreen:(FBMediaView *)mediaView;
宣言されたアイテム: FBMediaView.h