如何在应用程序中播放视频?
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这里有一些代码可以帮助您入门:
根据文档,您必须将 MPMoviePlayerController 的框架设置为与父视图的框架一样大。
Here's some code to get you started:
By the documentation you have to set the MPMoviePlayerController's frame with a frame as big as the parent view's.
MPMoviePlayerViewController。提问前请稍微搜索一下。
MPMoviePlayerViewController. Please search a little bit before asking questions.
是的,iOS 确实包含媒体 API 来处理这个问题。
Yes iOS does contain media API's to handle that.