Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to play a video in iPad, which is to be retrive from a web service. I can not directly give a url to MPMoviePlayerController to play the video. I need to create a SOAP web request to get the video from a webservice.

This webservice returns the request video in a form of chuncks of data, each of some few KBs.

My question is, how can we play these chunks of data in the iPad.

Thanks

share|improve this question

1 Answer

Try using a WebView.

viewController.h

@property (unsafe_unretained, nonatomic) IBOutlet UIWebView *enbededWebView;

viewController.m

NSString *vedioYoubeString=@"<iframe width=\"560\" height=\"315\" src=\"http://yoururl pass here" frameborder=\"0\" allowfullscreen></iframe>";

//[[self.view addSubview:_enbededWebView]loadHTMLString:vedioYoubeString baseURL:nil];

[_enbededWebView loadHTMLString:vedioYoubeString baseURL:nil];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.