I have a custom UISegmentedControl. In iOS 6 and bellow it works fine. Under iOS 7.. it looks fine until I press the control, at which time, the divider image looks weird fo
I solved this by overriding touchesEnded in a subclass and disabling animations for CATransaction
touchesEnded
override func touchesEnded(touches: Set, withEvent event: UIEvent) { CATransaction.setDisableActions(true) super.touchesEnded(touches, withEvent: event) }