在 iOS 5.0.1 中,第二屏幕能够通过 AppleTV 上的 AirPlay 实现 16:9
我考虑在我的一个应用程序中扩展支持,以通过 AppleTV 处理第二个屏幕。
问题是:
如果我只是镜像我的应用程序,那么漂亮的 46 英寸液晶电视仅显示我的应用程序的 4:3 信箱图像。如果我更改应用程序以呈现不同的屏幕,是否可以使用完整的 16:9 比例适用于 Apple TV / AirPlay?
i think about extending support within one of my apps to handle a second screen via AppleTV.
The question is:
If i just mirror my App, the nice 46" LCD TV shows only a 4:3 Letterbox Image of my App. Is it possible to use the full 16:9 ratio if i change my app to render a different screen for Apple TV / AirPlay?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
绝对地。在 iOS 5 中,镜像的 AirPlay 屏幕可以用作辅助 UIScreen,其内容可以与设备屏幕上的内容不同。这就是你想做的。
您可以在此处查看如何执行此操作:
https://github.com/quellish/AirplayDemo
您的设备屏幕将被镜像,直到您开始使用辅助 UIScreen,并且您可以删除附加到 UIScreen 的窗口并返回镜像。这使您可以控制何时将自定义内容放在那里以及何时进行镜像。
Absolutely. In iOS 5, a mirrored AirPlay screen can be used as a secondary UIScreen, which can have content different from what is on the device screen. That's what you want to do.
You can see how to do this here:
https://github.com/quellish/AirplayDemo
Your device screen is mirrored until you start using that secondary UIScreen, and you can remove the window you attach the to the UIScreen and go back to mirroring. This lets you control when you're putting custom content on there, and when you're just mirroring.
绝对 - 请参阅 Real Racing HD 2 以获得一个很好的示例!
Absolutely - see Real Racing HD 2 for a great example!