使用 swift 以编程方式填充 UISegmentedControl

Fill programmatically UISegmentedControl using swift

是否可以使用 swift 以编程方式填充 UISegmentedControl 的值?

let segmentedControl = UISegmentedControl()
segmentedControl.insertSegment(withTitle: "Title", at: 0, animated: true)
segmentedControl.setTitle("Another Title", forSegmentAt: 0)

我解决了我的问题,使用@RyuX51的解决方案 我现在的代码是:

class MyCustomViewController: UIViewController{

    @IBOutlet weak var ServicesSC: UISegmentedControl!

    override func viewDidLoad() {
        super.viewDidLoad()

        ServicesSC.removeAllSegments()


        ServicesSC.insertSegment(withTitle: "Title", at: 0, animated: true)
        ServicesSC.setTitle("Another Title", forSegmentAt: 0)

    }


}

如果我没记错的话,你的意思是你想以编程方式向 "UISegmentedControl" 组件添加段,而不使用 Interface Builder。

是的,有可能:

// Assuming that it is an "IBOutlet", you can do this in your "ViewController":
class ViewController: UIViewController {

    @IBOutlet weak var segmentedControl: UISegmentedControl!

    override func viewDidLoad() {
        super.viewDidLoad()

        // remove all current segments to make sure it is empty:
        segmentedControl.removeAllSegments()

        // adding your segments, using the "for" loop is just for demonstration:
        for index in 0...3 {
           segmentedControl.insertSegmentWithTitle("Segment \(index + 1)", atIndex: index, animated: false)
        }

        // you can also remove a segment like this:
        // this removes the second segment "Segment 2"
        segmentedControl.removeSegmentAtIndex(1, animated: false)
    }

    // and this is how you can access the changing of its value (make sure that event is "Value Changed")
    @IBAction func segmentControlValueChanged(sender: UISegmentedControl) {
        print("index of selected segment is: \(sender.selectedSegmentIndex)")
    }
}