gpt4 book ai didi

ios - 如何将多个 SegmentedControl 加载到 ViewController 中

转载 作者:行者123 更新时间:2023-11-30 11:57:34 25 4
gpt4 key购买 nike

我正在尝试将多个 SegmentedControls 加载到 Xcode 上的一个 ViewController 中。下面是按钮。 Buttons

当我单击其中一个按钮时,我希望加载 SegmentedControl。 SegmentedControl

这些 SegmentedControls 将加载到 ViewController 上。有什么办法可以实现这一点吗?

我当前的代码类似于以下内容:

    @IBAction func action(_ sender: Any) {

//let url = URL(string: sender.accessibilityIdentifier!)!

let alertController = UIAlertController(title: (sender as AnyObject).accessibilityLabel, message: (sender as AnyObject).accessibilityHint, preferredStyle: .actionSheet)

let HSAction = UIAlertAction(title: "Upper Building", style: .default) { action in

DispatchQueue.main.async {
self.performSegue(withIdentifier: "one", sender: nil)
}


//UIApplication.shared.open(url, options: [:], completionHandler: nil)
}
alertController.addAction(HSAction)
}

最佳答案

移动到另一个 View Controller 后,您可以创建带有多个按钮的分段控件,如下所示。

segmentedControl = UISegmentedControl (items: ["First","Second","Third"])
segmentedControl.frame = CGRectMake(60, 250,200, 30)
segmentedControl.selectedSegmentIndex = 0
segmentedControl.addTarget(self, action: "segmentedControlAction:", forControlEvents: .ValueChanged)
self.view.addSubview(segmentedControl)

关于ios - 如何将多个 SegmentedControl 加载到 ViewController 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47632486/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com