Ho problemi a ottenere UISegmentedControl per mostrare il colore della tinta desiderato.UISegmentedControl tintColor
// AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// need red tint color in other views of the app
[[UIView appearance] setTintColor:[UIColor redColor]];
return YES;
}
// ViewController
- (void)viewDidLoad {
[super viewDidLoad];
NSArray *items = @[@"Item 1", @"Item 2"];
UISegmentedControl *control = [[UISegmentedControl alloc] initWithItems:items];
// would like to have this control to have a green tint color
control.tintColor = [UIColor greenColor];
[self.view addSubview:control];
}
Come rendere UISegmentedControl utilizzare il colore di tinta verde?
Hai provato questo: [comparsa] setTintColor [UISegmentedControl: [UIColor greenColor]] ';' – BoilingLime
Sì, produce purtroppo lo stesso risultato. –
Non proprio il modo migliore per farlo, ma potrebbe funzionare. prova ad impostare il colore per ogni sottoview di 'UISegmentControl'? – BoilingLime