I am having problems adjusting the size of the UINavigationController on iPad (iOS 4.3.5). On the tablet's large screen it appears as a window with the background of fullscreen view dimmed, however I want to adjust the width of that window (to be the same size as iPhone Retina display).
SettingsViewController *settingsController = [[SettingsViewController alloc] init];
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:settingsController];
[self presentModalViewController:navController animated:YES];
SettingsViewController contains a UITableView and with the default width of the UINavigationController window it looks too wide, so I need to either make the window narrower or at least add some padding to the underlying UITableView, so that the rows are not as wide.
Any solutions/suggestions would be appreciated.