it looks like UISegmentedControl
doesn't allow user to do multiple selection by default.
I have seen some github libraries for obj-c, how allow multiple segment selection using swift?
how to do multiple selection in segmented control in swift ?
it looks like UISegmentedControl
doesn't allow user to do multiple selection by default.
I have seen some github libraries for obj-c, how allow multiple segment selection using swift?
how to do multiple selection in segmented control in swift ?
UIKit
does not provide any feature to support for multiple selections in UISegmentControl
. Recommendation would be to create a custom control, better to use an array of UISwitch
controls where it represents each of the options in your UISegmentControl
.