I can change UISwitch's color with below code but always color is yellow how to change color to another color?
UISwitch *switch1=[[UISwitch alloc]initWithFrame:CGRectMake(70, 121, 94, 27)];
[switch1 setAlternateColors:YES];
I can change UISwitch's color with below code but always color is yellow how to change color to another color?
UISwitch *switch1=[[UISwitch alloc]initWithFrame:CGRectMake(70, 121, 94, 27)];
[switch1 setAlternateColors:YES];
Finally, with iOS5 you can change the color of the switch with the property onTintColor
.
UISwitch *s = [[UISwitch alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
s.on = YES;
s.onTintColor = [UIColor redColor];
[self.view addSubview:s];
[s release];
produce this
I hope this help !
From the UISwitch reference, "The UISwitch class is not customizable." So you can't change the appearance of UISwitch.