我有一个
带有各自视图的iPhone 应用程序FirstViewController
和.SecondViewController
FirstView.xib
SecondView.xib
现在我想让这个应用程序同时适用于 iPhone 和 iPad。对于 iPad,我需要合并Firstview.xib
并SecondView.xib
成为一个ThirdView-iPad.xib
.
最好的方法是什么?我是否需要为 iPad 编写另一个 ViewController 类,或者我可以使用现有的FirstViewController
和SecondViewController
单个 xib 吗?
到目前为止,我的研究表明,没有办法将多个 ViewController 与单个 xib 一起使用。请让我知道执行此操作的最佳方法。
谢谢