Make UISwitch border width smaller

471 Views Asked by At

Hello I am trying to make UISwitch borderWidth smaller, but it doesn't look correct.

All I did is layer.borderWidth = 0.5

It looks like there is two layers. The border color is suppose to be gray, but for some reason black shows?

1

There are 1 best solutions below

0
On

instead of using storyboard try to customise switch programmatically . try using following code as if you change one parameter must adjust radius of switch too. Hope it helps

OnOffSwitch.layer.borderWidth = 1.0;
OnOffSwitch.layer.cornerRadius = 16.0;

enter image description here

OnOffSwitch.layer.borderWidth = 0.5;
OnOffSwitch.layer.cornerRadius = 17.0;

enter image description here