如何在应用程序中播放视频?

发布于 2024-11-09 14:16:47 字数 93 浏览 0 评论 0原文

我的 xcode 项目中保存了一个视频,我想将其作为对按钮单击的响应来播放。 IOS 是否有内置的媒体 API 来处理这个问题?谁能给出处理 iPhone 上视频的类名吗?

I have a video saved in my xcode project that I want to play as a response to a button click. Does IOS have built in media API's to handle that? Could anyone give the class name that handles video on the iPhone?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

心的位置 2024-11-16 14:16:47

这里有一些代码可以帮助您入门:

MPMoviePlayerController *moviePlayerController = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"yourfilename" ofType:@"m4v"]]];
        [[moviePlayerController view] setFrame:CGRectMake(0, 0, parentView.frame.size.width, parentView.frame.size.height)];
        [moviePlayerController setShouldAutoplay:NO];
        [moviePlayerController setControlStyle:MPMovieControlStyleEmbedded];
        [[moviePlayerController backgroundView] setBackgroundColor:[UIColor clearColor]];
        [moviePlayerController prepareToPlay];

根据文档,您必须将 MPMoviePlayerController 的框架设置为与父视图的框架一样大。

Here's some code to get you started:

MPMoviePlayerController *moviePlayerController = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"yourfilename" ofType:@"m4v"]]];
        [[moviePlayerController view] setFrame:CGRectMake(0, 0, parentView.frame.size.width, parentView.frame.size.height)];
        [moviePlayerController setShouldAutoplay:NO];
        [moviePlayerController setControlStyle:MPMovieControlStyleEmbedded];
        [[moviePlayerController backgroundView] setBackgroundColor:[UIColor clearColor]];
        [moviePlayerController prepareToPlay];

By the documentation you have to set the MPMoviePlayerController's frame with a frame as big as the parent view's.

舞袖。长 2024-11-16 14:16:47

MPMoviePlayerViewController。提问前请稍微搜索一下。

MPMoviePlayerViewController. Please search a little bit before asking questions.

一萌ing 2024-11-16 14:16:47

是的,iOS 确实包含媒体 API 来处理这个问题。

Yes iOS does contain media API's to handle that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文