I have an iPhone storyboard with a UITableView
that segues to a detail view using a navigation controller. I'm trying to reuse my classes in the iPad version of the same app inside a master-detail UI.
Here's how my storyboards look to visualize what I'm doing:
I want to reuse as much code as possible, and so far I've been successful in reusing my PPAircraftViewController
class with its aircraftTableView
.
Question: Since the iPad app already uses PPAircraftViewController
to hold the table and detail views, how can I reuse my PPAircraftDetailViewController
class with all its code and IBOutlet
s?
Xcode 5, targeting iOS 6 & 7, UISplitViewController not an option since all of this is embedded within a parent navigation controller.
UISplitViewController
, it has to be at the root of an application. I can't push to it. Am I mistaken? – Clifton Labrum