I am using below code for playing a video file from local.But when i go for analyze i am getting memory leak happening at 2 places i have mentioned below by commenting out where exactly its happening.I am not able to resolve this issue.can anyone tel me how to solve this memory
NOTE:I ALSO WANT TO KNOW IF THIS KIND MEMORY LEAK IS HAPPENING MEANS WHEN I SUBMIT APPS IN APPS STORE WILL APPLE PEOPLE REJECT MY APP FOR LEAKS HAPPENING IN MY CODE.
-(IBAction)playMovie
{
NSURL *url = [NSURL fileURLWithPath:[[NSBundle mainBundle]pathForResource:@"OPTIMA_EDIT_FINAL" ofType:@"mov"]];
MPMoviePlayerController *moviePlayer=[[MPMoviePlayerController alloc]initWithContentURL:url]
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(moviePlayBackDidFinish:) name:MPMoviePlayerPlaybackDidFinishNotification object:moviePlayer];
moviePlayer.controlStyle = MPMovieControlStyleEmbedded;
moviePlayer.shouldAutoplay = YES;
[self.view addSubview:moviePlayer.view];
[moviePlayer setFullscreen:YES animated:YES];
//ITS SHOWING MEMORY LEAK IN THIS LINE
}
-(void) moviePlayBackDidFinish:(NSNotification*)notification
{
MPMoviePlayerController *moviePlayer = [notification object];
[[NSNotificationCenter defaultCenter] removeObserver:self
name:MPMoviePlayerPlaybackDidFinishNotification
object:moviePlayer];
if ([moviePlayer respondsToSelector:@selector(setFullscreen:animated:)])
[moviePlayer.view removeFromSuperview];
[moviePlayer release];
//ONE MORE MEMORY LEAK IS HAPPENING HERE..IF I COMMENT IT OUT THIS LINE MEMORY LEAK WONT HAPPEN BUT VIDEO WONT RUN
}
