Universal iPhone/iPad application debug compilation error for iPhone testing

That error is being triggered because you didn’t weak-link the UIKit framework. The UIKit framework in iPhone OS 3.2 added the UISplitViewController, and if you link it in as normal your application will assume those symbols exist on 3.0, where they don’t. To weak-link a framework, find your application target in Xcode, inspect it, and … Read more