我想在我的应用中嵌入Facebook视频。我从网络服务获取视频链接。 例如:
"video_url": "https://www.facebook.com/urdutimes.ca/videos/520665921438799/"
是否可以使用Objective-C在本机iOS应用中嵌入此视频?
提前致谢
答案 0 :(得分:-1)
试试这个:
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];