我可以为我的应用程序启用 AirPlay 功能吗?
如果我为 iOS (XCode/Objective-C) 创建自己的自定义应用程序,我可以使其支持 AirPlay 并将我选择的屏幕内容传输到 Apple TV 吗?
我正在寻找哪些 API/函数调用?
If I create my own custom Application for iOS (XCode/Objective-C), can I make it support AirPlay and beam scren content of my choice to an Apple TV?
What APIs/Function Calls am I looking for?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AirPlay 支持背后的想法是播放应用程序中的视频内容。
如果您是注册的 iOS 开发人员,登录后您将能够在 iOS 4 beta 部分找到文档和示例。由于这仍然是 4.3 版本的测试版,因此文档处于保密协议之下。
这非常简单明了。您应该从
MPMoviePlayerController
开始查找。The idea behind the AirPlay support is to play the video content from your app.
If you're a registered iOS Developer, you will be able to find the documentation and examples at the iOS 4 beta section after you login. As this is still a beta release for 4.3 version, documentation is under confidential agreement.
It's pretty much easy and straightforward. You should start looking by
MPMoviePlayerController
.