VKPlayerViewControllerDelegate Protocol Reference
| Conforms to | NSObject |
|---|---|
| Declared in | VKPlayerViewController.h |
– onPlayerViewControllerStateChanged:errorCode:
Optional delegate method, add this method to your viewcontroller if you want to be notified
- (void)onPlayerViewControllerStateChanged:(VKDecoderState)state errorCode:(VKError)errCodeParameters
state |
Indicates the state in VKDecoderState type |
|---|---|
errCode |
Indicates the error code in VKError type |
Declared In
VKPlayerViewController.h
– onPlayerViewControllerDidStartRecordingWithPath:
Optional delegate method, add this method to your viewcontroller if you want to be notified about the start event of recording functionality
- (void)onPlayerViewControllerDidStartRecordingWithPath:(NSString *)recordPathParameters
recordPath |
Indicates the path of recorded file |
|---|
Declared In
VKPlayerViewController.h
– onPlayerViewControllerDidStopRecordingWithPath:error:
Optional delegate method, add this method to your viewcontroller if you want to be notified about the stop event of recording functionality
- (void)onPlayerViewControllerDidStopRecordingWithPath:(NSString *)recordPath error:(VKErrorRecorder)errorParameters
recordPath |
Indicates the path of recorded file |
|---|---|
error |
Indicates the error in VKErrorRecorder type, If success, returning error is kVKErrorRecorderNone |
Declared In
VKPlayerViewController.h
– onPlayerViewControllerDidICYMetadataChanged:
Optional delegate method, add this method to your viewcontroller if you want to be notified about metadata information for http shoutcast/icy streams
- (void)onPlayerViewControllerDidICYMetadataChanged:(VKICYMetadata *)icyMetadataParameters
icyMetadata |
Holds the metadata information as an instance of VKICYMetadata class |
|---|
Declared In
VKPlayerViewController.h