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!