In iOS 7, if i want to get UIWebView QuickTime "Done" event.
I can use NSNotification to get it.
This is my code.
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(playerWillExitFullscreen:)
name:@"UIMoviePlayerControllerWillExitFullscreenNotification"
object:nil];
[_videoWebView loadRequest:[NSURLRequest requestWithURL:_contentURL]];
And use this function, i can get Done event in UIWebView.
- (void)playerWillExitFullscreen:(NSNotification *)notification
But in iOS 8, the notification is not work...(The notification name is hidden solution in iOS 7.)
So how can i get it(Done event) in iOS8 ?