Moved to iOS 7.0.3 / Xcode 5.0.2
Videos stopped playing, both on simulator and device.
//snippet
movieController = [[MPMoviePlayerController alloc] initWithContentURL:url];
movieController.fullscreen = YES;
movieController.controlStyle = MPMovieControlStyleEmbedded;
movieController.scalingMode = MPMovieScalingModeAspectFit;
movieController.view.frame = self.bounds;
if(floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_6_1)
{
movieController.contentURL = url;
}
Any help is welcome!
Thanks in advance!
Videos stopped playing, both on simulator and device.
//snippet
movieController = [[MPMoviePlayerController alloc] initWithContentURL:url];
movieController.fullscreen = YES;
movieController.controlStyle = MPMovieControlStyleEmbedded;
movieController.scalingMode = MPMovieScalingModeAspectFit;
movieController.view.frame = self.bounds;
if(floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_6_1)
{
movieController.contentURL = url;
}
Any help is welcome!
Thanks in advance!