tags:

views:

28

answers:

2

i am new to iphone . i need sample code for how to add video files in iphone.

+1  A: 

Include the media player framework then do this:

MPMoviePlayerViewController *mediaPlayer = [[MPMoviePlayerViewController alloc] initWithContentURL:[NSURL URLWithString:@"http://mywebsite.com/movie.mov"]]; // this can be an NSURL to a file in your bundle
 [self presentMoviePlayerViewControllerAnimated:mediaPlayer];
 mediaPlayer.view.backgroundColor = [UIColor blackColor];
 [mediaPlayer release];

there are notifications and callbacks, but this is the basics.

Thomas Clayson
A: 

you can find basically all the things you need here --> http://pdfcast.org/pdf/the-objective-c-programming-language ... download the pdf... enjoy!

Owen