Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having trouble with MPMoviePlayer. In my case the "moviePlayBackDidFinish" called first when I start the app. Then when video is running whenever ever I click anywhere in the screen app get crashed. here is my code :

- (void)viewDidLoad 
{

    NSURL *movieURL = [NSURL URLWithString:videoURL];

    moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:movieURL];

    [self presentModalViewController:self animated:YES];


    CGRect frm = self.view.bounds; //CGRectMake(0, 0, 320, 480);
    [moviePlayer.view setFrame:frm];
    //[moviePlayer play];
    [self.view addSubview:moviePlayer.view];
    [self notifications];

    [moviePlayer play];

    [super viewDidLoad];
}

-(void) notifications
{

    if ([moviePlayer respondsToSelector:@selector(loadState)]) 
    {
        NSLog(@"fhjkds");
        // Set movie player layout
        [moviePlayer setControlStyle:MPMovieControlStyleFullscreen];
        [moviePlayer setFullscreen:YES];

        // Register that the load state changed (movie is ready)
        [[NSNotificationCenter defaultCenter] addObserver:self 
                                            selector:@selector(moviePlayerLoadStateChanged:) 
                                            name:MPMoviePlayerLoadStateDidChangeNotification object:nil];
    }  

    [self.view addSubview:moviePlayer.view];

    // Register to receive a notification when the movie has finished playing. 
    [[NSNotificationCenter defaultCenter] addObserver:self 
                                         selector:@selector(moviePlayBackDidFinish:) 
                                         name:MPMoviePlayerPlaybackDidFinishNotification object:nil];
}

- (void) moviePlayerLoadStateChanged:(NSNotification*)notification 
{
    // Unless state is unknown, start playback
    if ([moviePlayer loadState] != MPMovieLoadStateUnknown)
    {
        // Remove observer
        [[NSNotificationCenter  defaultCenter] removeObserver:self
                                                         name:MPMoviePlayerLoadStateDidChangeNotification object:nil];

        // When tapping movie, status bar will appear, it shows up
        // in portrait mode by default. Set orientation to landscape
        [[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeRight animated:NO];

        // Rotate the view for landscape playback
        [[self view] setBounds:CGRectMake(0, 0, 480, 320)];
        //[[self view] setCenter:CGPointMake(160, 240)];
        [[self view] setTransform:CGAffineTransformMakeRotation(M_PI / 2)]; 

        // Set frame of movieplayer
        [[moviePlayer view] setFrame:CGRectMake(0, 0, 480, 320)];

        // Add movie player as subview
        [[self view] addSubview:[moviePlayer view]];   

        // Play the movie
        [moviePlayer play];
    }        
}



- (void) moviePlayBackDidFinish:(NSNotification*)notification 
{    
    [[UIApplication sharedApplication] setStatusBarHidden:YES];

    // Remove observer
    [[NSNotificationCenter  defaultCenter] removeObserver:self
                                        name:MPMoviePlayerPlaybackDidFinishNotification 
                                        object:nil];


    //[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationPortrait animated:YES];
    [self dismissModalViewControllerAnimated:YES];  

    //[self.navigationController popToViewController:[self.navigationController.viewControllers objectAtIndex:1] animated:YES];
}


// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

- (void) loadView
{
    [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
    [[self view] setBackgroundColor:[UIColor blackColor]];
}

any suggestions ? when I click on Done button my previous view should be displayed.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.