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 trialRavin Kohli
3,367 PointsMPMoviePLayerController deprecated
MPMoviePlayerController has been deprecated in ios 9 we have to use the av player and i am having trouble using that i am getting an error this is my didSelectRowAtIndexPath declaration
<InboxTableViewController.m>
if ([fileType isEqual: @"Image"]) { [self performSegueWithIdentifier:@"showImage" sender:self]; }else{ PFFile *videoFile = [self.selectedMessage objectForKey:@"file"];
NSURL *videoURL = [NSURL URLWithString:videoFile.url];
AVURLAsset *avasset = [[AVURLAsset alloc] initWithURL:videoURL options:nil];
AVPlayerItem *item = [[AVPlayerItem alloc] initWithAsset:avasset];
self.moviePlayer.player = [AVPlayer playerWithPlayerItem:item];
[self.view addSubview:self.moviePlayer.view];
[self.moviePlayer.player play];
}
<InboxTableViewController.h> @property (strong, nonatomic) AVPlayerViewController *moviePlayer;
1 Answer
landonferrier
25,097 PointsRavin and Wilson, here is a full template for the social network application: Click Here.
Wilson Muñoz
16,913 PointsWilson Muñoz
16,913 PointsI tried your solution and seek a little more info and..
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.