在ios应用程序中播放Facebookvideo

我想在我的应用程序中embeddedFacebookvideo。 我正在从web服务获取video链接。 例如:

"video_url": "https://www.facebook.com/urdutimes.ca/videos/520665921438799/" 

是否可以使用Objective-C将本videoembedded到原生iOS应用程序中?

提前致谢

试试这个:

 NSURL *url = [NSURL URLWithString:@"https://www.facebook.com/urdutimes.ca/videos/520665921438799/"]; MPMoviePlayerViewController *mp = [[MPMoviePlayerViewController alloc] initWithContentURL:url]; mp.moviePlayer.movieSourceType = MPMovieSourceTypeStreaming; [self presentMoviePlayerViewControllerAnimated:mp];