Anybody have trouble with an MPMoviePlayerViewController giving a white screen when it is presented?
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
MPMoviePlayerViewController* mpViewController = [[MPMoviePlayerViewController alloc] init];
[[mpViewController moviePlayer] setContentURL: [NSURL URLWithString:@"http://burtonliftline.com/site-media/uploads/videos/ad_to_fakie-the_liftline_1.mp4"]];
[self presentMoviePlayerViewControllerAnimated:mpViewController];
}