How do I make a custom UISegmentedControl?
UISegmentedControl
I have 2 images, 1 that should be displayed when the segment is active and the other if the segment is inacti
In order to do this you must listen for the UIControlEventValueChanged and change the image yourself. You shouldn't need to subclass the UISegmentedControl - remember composition over inheritance is preferred!