I have an iPhone app with
FirstViewController
and SecondViewController
with respective views FirstView.xib
and SecondView.xib
.
Now I want to make this app work with both iPhone and iPad. For iPad I need to merge Firstview.xib
and SecondView.xib
into a single ThirdView-iPad.xib
.
What would be the best approach? Do I need to write another ViewController class for iPad or can I use existing FirstViewController
and SecondViewController
with single xib?
My research so far says that there is no way to use multiple ViewControllers with single xib. Please let me know the best way to do this.
Thanks