您需要的是在您的顶部设置并toolbarItems
正确配置它。考虑这样的事情:UIViewController
UIPopover
NSArray *segmentedItems = [NSArray arrayWithObjects:@"Bookmarks", @"Recents", @"Contacts", nil];
UISegmentedControl *ctrl = [[UISegmentedControl alloc] initWithItems:segmentedItems];
ctrl.segmentedControlStyle = UISegmentedControlStyleBar;
ctrl.selectedSegmentIndex = 0;
UIBarButtonItem *item = [[UIBarButtonItem alloc] initWithCustomView:ctrl];
ctrl.frame = CGRectMake(0.0f, 5.0f, 320.0f, 30.0f);
NSArray *theToolbarItems = [NSArray arrayWithObjects:item, nil];
[self setToolbarItems:theToolbarItems];
[ctrl release];
[item release];
编辑:现在我明白了,只是不设置 tintColor,它将继承正确的颜色(无论它是什么)。下面的截图现在看起来与谷歌地图应用程序中的截图一模一样:
替代文字 http://www.memorylifter.com/services/dev/linklist/SCREENSHOT_TABBAT.png