tags:

views:

24

answers:

1

I want to load file from server etc.http://www.myname.com/myfile.mov to my app and play vdo with MPMoviePLayer but use NSURLconnect to connect web and recieve data but I don't know how to bring data that Type NSdata convert to NSURL for play VDO

+1  A: 

don't use NSURLConnection to download the data yourself, just pass the URL to the movie player.

NSURL *url = [NSURL URLWithString:@"http://www.myname.com/myfile.mov"];
MPMoviePlayerController* theMovie =
    [[MPMoviePlayerController alloc] initWithContentURL: url];
David Maymudes