Reputation: 11
I need your help please: how can I delete this wihte line?
NSString *AppFolderPath = [[NSBundle mainBundle] resourcePath];
NSString *MoviePath=[NSString stringWithFormat: @"/%@/%@", AppFolderPath,pathVideo];
NSLog(MoviePath);
NSURL *movieURL=[[NSURL fileURLWithPath:MoviePath]retain];
movieController = [[MPMoviePlayerController alloc] initWithContentURL:movieURL];
[self addSubview:movieController.view];
[movieController setMovieControlMode:MPMovieScalingModeAspectFit];
[movieController setShouldAutoplay:YES];
[movieController setFullscreen:YES animated:YES];
Upvotes: 1
Views: 124
Reputation: 17478
Actually I have also tried with same code. (Except that, setMovieControlMode: is removed since it was deprecated). But I 'm not getting that kind of line. Pl. try with another video.
Upvotes: 1