UISegmentedControl iOS
1 min readOct 5, 2020
--
A UISegmentedControl object is a horizontal control made of multiple segments, each segment functioning as a discrete button. A segmented control affords a compact means to group together a number of controls.
Creating UISegmentedControl via code
1. Create new instance of UISegmentedControl filled with 3 items (segments):
let mySegmentedControl = UISegmentedControl (items: [“One”, “Two”, “Three”])
2. Setup frame;
mySegmentedControl.frame = CGRect(x: 0.0, y: 0.0, width: 300, height: 50)