iPhone、iPad、通用应用程序设计、基于分割视图
我想构建通用应用程序。
我可以使用适用于 iPad 的基于拆分视图的通用应用程序吗?
I want to build universal app.
Can I use split view-based application for iPad that work universal app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UISplitViewController 仅适用于 iPad,因此您无法在 iPhone 上使用它。然而,通用应用程序对于每个类别的设备都有单独的 XIB,其明确的目的是允许您在适当的情况下提供完全不相关的接口。因此,您可以在通用应用程序中使用 UISplitViewController,但仅限于 iPad 部分。您可能希望使用两个直接在 iPhone 上使用的控制器来填充它。
UISplitViewController is available exclusively on the iPad, so you can't use it on the iPhone. However, a universal app has separate XIBs for each category of device with the express intention of allowing you to provide entirely unrelated interfaces if appropriate. You therefore can use a UISplitViewController in a universal app, but only for the iPad part. You would possibly want to populate it with two controllers that are used directly on the iPhone.