我正在尝试在 UINavigationController 的标题中添加 UISegmentedControl。然而,格式看起来像这样(即它的丑陋)。
当我希望它看起来像这样时(漂亮:)。有人可以帮忙吗??
我在这里阅读了 Red Artisan 的流行示例。但是我并没有将其作为我的第一个视图(就像 Red Artisan 那样),所以我已经将很多代码从 App Delegate 中移出。在 App Delegate 中,我确实将此屏幕设置为 UINavigationController,其 rootView 为 UIViewController。
GenInfoViewController *genInfoController = [[GenInfoViewController alloc] initWithNibName:@"GenInfoViewController" bundle:nil];
UINavigationController *genInfoNavController = [[UINavigationController alloc] initWithRootViewController:genInfoController];
然后在 GenInfoViewController.m 的 viewDidLoad 中,我执行以下操作:
self.segmentedControl = [[UISegmentedControl alloc] initWithItems:@[@"Info",@"Map"]];
self.navigationItem.titleView = self.segmentedControl;