I am writing an app that supports both OSX and iOS targets using Xcode 4. The source code is separated into three groups/folders, one for the platform independent code and one for the interface of each target, including the NIBs. The Mac version is up and running, but now I've stumbled across a problem when I wanted to start writing the iOS interface:

Both targets have the same classes, which respond to the same messages from the platform independent code, but have different objects and outlets (NSView vs UIView, etc.). Interface Builder shows the wrong outlets and actions for the File's Owner class (the ones that belong to the OSX view controller and come first in the project navigator) and causes an exception, because there is no UIView *view outlet defined.

*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '-[UIViewController _loadViewFromNibNamed:bundle:] loaded the "ViewController_iPhone" nib but the view outlet was not set.'

I have taught the iOS target to disregard the OSX headers by setting USE_HEADERMAP=NO and HEADER_SEARCH_PATH to the folder containing iOS dependent header files first. Is there a way to exclude the unused header files from Interface Builder's search list?

Thanks!

link|improve this question
In the nib file for iOS version, you need to bind the UIView to the file owner. – user523234 Dec 20 '11 at 12:38
I know, but since the Interface Builder offers me the wrong file owner class there is no UIView object to bind to. – Klaus Boldt Dec 20 '11 at 18:05
Can't you just change the class of the File Owner in Interface Builder? – Monolo Dec 20 '11 at 20:50
Then I would have to change all the platform independent method calls. This would mean cluttering the source code with lots of #ifdefs and #endifs. The view controllers are supposed to appear equal to the model/controller part under the surface, but control different GUIs. – Klaus Boldt Dec 20 '11 at 22:25
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.