Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMatthew Harvey
3,128 PointsI Really need help converting the MPMoviePlayerController code into something that works in latest Xcode
What do I change this to in the header file?
@property (nonatomic, strong) MPMoviePlayerController *moviePlayer;
What do I change this to in the viewDidLoad method in the implementation file?
self.moviePlayer = [[MPMoviePlayerController alloc] init];
What do I change this to in the didSelectRowAtIndexPath in the implementation file?
PFFile *videoFile = [self.selectedMessage objectForKey:@"file"];
NSURL *fileUrl = [NSURL URLWithString:videoFile.url];
self.moviePlayer.contentURL = fileUrl;
[self.moviePlayer prepareToPlay];
[self.view addSubview:self.moviePlayer.view];
[self.moviePlayer setFullscreen:YES animated:YES];
Wilson Muñoz
16,913 PointsWilson Muñoz
16,913 PointsHi, i'm right now trying to resolve this. I tried this and works a little:
You need to import AVKit/AVKit.h AVFoundation/AVFoundation.h
And change your property: @property(nonatomic, strong) AVPlayer *moviePlayer;
Let me know if you get a better result.