How to check if the accelerated control of the AVPlayerViewController has been pressed?
I have an AVPlayerViewController and an AVPlayer that shows the default controls. When the player is in full screen mode, → → | the button works like fast forward, but I would like to override / delegate it to act like the next button and call my method playNextVideo()
. Is this possible or do I have to live with fast forwarding?
+3
justin shores
source
to share
1 answer
set AVPlayerViewControllerDelegate then use
-(void)playerViewController:(AVPlayerViewController *)playerViewController willResumePlaybackAfterUserNavigatedFromTime:(CMTime)oldTime toTime:(CMTime)targetTime;
0
Jenel Ejercito Myers
source
to share