i have taken the option universal app while creating the application . I got an appdelegate and a viewcontroller with 2 xibs . one for iphone and 1 for ipad . If i want to use another view controller should i take 2 classes with 2 view controllers or single class with 2 xibs.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
From my understanding, you should be able to just have another view controller and use the conditional statement from the template when you initialize it:
Where @"ViewController_iPhone/iPad" are your two separate nibs. I'd recommend having a different class for each view as well. |
|||||
|
|
Both will work. You can use multiple Xib one for iphone and one for iPad with same class. But never forget to set file owners for each Xib. |
|||||
|
