VLCKit
|
#import <VLCMediaPlayer.h>
Instance Methods | |
(void) | - mediaPlayerStateChanged: |
(void) | - mediaPlayerTimeChanged: |
(void) | - mediaPlayerTitleChanged: |
(void) | - mediaPlayerChapterChanged: |
Formal protocol declaration for playback delegates. Allows playback messages to be trapped by delegated objects.
|
optional |
Sent by the default notification center whenever the player's chapter has changed (if any).
Discussion The value of aNotification is always an VLCMediaPlayerChapterChanged notification. You can retrieve the VLCMediaPlayer object in question by sending object to aNotification.
|
optional |
Sent by the default notification center whenever the player's state has changed.
Discussion The value of aNotification is always an VLCMediaPlayerStateChanged notification. You can retrieve the VLCMediaPlayer object in question by sending object to aNotification.
|
optional |
Sent by the default notification center whenever the player's time has changed.
Discussion The value of aNotification is always an VLCMediaPlayerTimeChanged notification. You can retrieve the VLCMediaPlayer object in question by sending object to aNotification.
|
optional |
Sent by the default notification center whenever the player's title has changed (if any).
Discussion The value of aNotification is always an VLCMediaPlayerTitleChanged notification. You can retrieve the VLCMediaPlayer object in question by sending object to aNotification.