Jak mogę uzyskać wartość tekstową segmentu w UISegmentedControl?
ios
iphone
uisegmentedcontrol
Matt S.
źródło
źródło
extra argument 'at' in call
błąd w Swift 3 z Xcode 8.3Ponieważ jest to pierwszy wynik Google i jesteśmy teraz w szybkiej erze:
Szybki:
seg_ctrl.titleForSegmentAtIndex( seg_ctrl.selectedSegmentIndex)
źródło
@IBAction func segmentedControlAction(sender: AnyObject) { if(segementControl.selectedSegmentIndex == 0) { print(segementControl.titleForSegmentAtIndex(0)) } else if(segementControl.selectedSegmentIndex == 1) { print(segementControl.titleForSegmentAtIndex(1)) } }
źródło