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