I\'m using UIWebView to play YouTube videos in an iPad.
How can I detect when a YouTube video is finished playing? I see the play icon in the status ba
please refere to:
https://developer.apple.com/library/ios/#documentation/AVFoundation/Reference/AVPlayerItem_Class/Reference/Reference.html
there is an notification available iOS 4.0 , which you can use to detect youtube video finish playing
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(youTubePlayed:) name:AVPlayerItemDidPlayToEndTimeNotification object:nil];