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 trial

iOS Build a Self-Destructing Message iPhone App Retrieving and Viewing Data from Parse.com Viewing Videos Using MPMoviePlayerController

Szymon Kadłuczka
Szymon Kadłuczka
8,762 Points

Ribbit video not playing in iOS7 using XCode 6

I am using Xcode 6 and iOS7. I have successfully followed the tutorial to display Images. When I added video code, it'd being shown in the Messages list, but when I click on it, the row is selected and nothing happens. The video is 3 seconds long and takes only 300kb, yet it's not playing. No error, too. Any help please?

My .h file has:

@property (nonatomic, strong) MPMoviePlayerController *moviePlayer;

My .m file has:

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];

When I test it using NSLog I get the URL to the .mov file. Yet, it's not playing.

Could you upload your project on dropbox and I can have a look for you. If you have already fixed it, what was the issue?

1 Answer

insert: [self.moviePlayer play];

:)