moviePlayBackDidFinish: is not called in application.
Posted
by srikanth rongali
on Stack Overflow
See other posts from Stack Overflow
or by srikanth rongali
Published on 2010-04-29T13:09:31Z
Indexed on
2010/04/29
13:27 UTC
Read the original article
Hit count: 592
In my application I have used these notifications when playing a video. But, The problem is the control of the program is not entering in to the first two methods(moviePreLoadDidFinish and moviePlayBackDidFinish). It is entering into last method. So, after the video is played and I pressed Done button in the video, I cannot touch any object in screen. I mean I used play button for video to play in a view. After the video played the play button is deactivated.
- (void) moviePreloadDidFinish:(NSNotification*)notification
{
}
// Notification called when the movie finished playing.
- (void) moviePlayBackDidFinish:(NSNotification*)notification
{
}
// Notification called when the movie scaling mode has changed.
- (void) movieScalingModeDidChange:(NSNotification*)notification
{
}
I could not get where I was wrong ? Thank You.
© Stack Overflow or respective owner