I'm trying to convert my iPhone app to a "universal" app with the following steps. The app's first screen has a navigation bar.
- Download and install Xcode 3.2.3 and iPhone SDK 4.
- Open an existing Xcode project of an iPhone app, select the target and choose "Update Current Target for iPad..." from the File menu.
- Select "One Universal application" in the popup that appears.
Now when I start the app in an iPad or the iPad simulator, the navigation bar is displayed all right but the right bar button item just doesn't work. I've confirmed that the rightBarButtonItem
is enabled,
(gdb) p (int)[[[firstController navigationItem] rightBarButtonItem] isEnabled]
$2 = 1
searched high and low for a solution, but no clue so far.