我在调整IPad的UINavigationController(iOS 4.3.5)时遇到了问题。 在桌旁的大型屏幕上,它似乎是一个窗户,其背景是完全抽取的眼光,但我想调整这个窗户的宽度(与Retina显示的大小相同)。
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.
任何解决办法/建议都会受到赞赏。