如何在Swift中按下按钮时出现滑块?

时间:2015-03-28 15:03:43

标签: ios swift storyboard

我正在制作一个绘图应用程序,我希望当用户点击一个按钮时出现一个滑块,例如设置一条线的宽度。 我可以添加警报并在其中添加滑块吗?

3 个答案:

答案 0 :(得分:3)

欢迎使用Stack Overflow。

您的问题更多的是基本的编程问题,而不是Swift问题。

我认为你不能把滑块放在警报中。 Apple最近推出了UIAlertController类,他们的文档说你应该使用UIAlertView来进行新的开发。

UIAlertController允许您创建警报和操作表,以及添加操作。操作显示为按钮。还有一个用于添加文本字段的工具。我不认为有任何设施可以添加滑块等其他视图对象。

现在已弃用的UIAlertView也未设置为添加滑块等自定义字段。

您可以将滑块放在视图的某处并将其隐藏属性设置为true,然后在按钮操作方法中设置mySlider.hidden = false。

然而,听起来您希望滑块出现在用户界面的顶部,然后在用户完成后离开。

您可以创建一个带滑块和关闭按钮的视图,将其置于视图控制器的内容视图之上,并将其隐藏标志设置为true。当用户点击你的按钮时,设置hidden = false并且视图将显示在顶部,就像警报一样。您需要设置约束,以便包含滑块的视图在屏幕上居中并适当调整大小。

答案 1 :(得分:2)

使用Swift 3.0,您可以将滑块(或其他对象)添加到UIAlertController子视图中。以下示例由@IBAction按钮触发,以使用和更新UserDefaults:Example of a UISider inside a UIAlertController

@IBAction func sliderButton(_ sender: AnyObject) {

    //get the Slider values from UserDefaults
    let defaultSliderValue = UserDefaults.standard.float(forKey: "sliderValue")

    //create the Alert message with extra return spaces
    let sliderAlert = UIAlertController(title: “Update Defaults", message: "Increase/Decrease the slider…\n\n\n\n\n\n”, preferredStyle: .alert)

    //create a Slider and fit within the extra message spaces
    //add the Slider to a Subview of the sliderAlert
    let slider = UISlider(frame:CGRect(x: 10, y: 100, width: 250, height: 80))
    slider.minimumValue = 1
    slider.maximumValue = 100
    slider.value = defaultSliderValue
    slider.isContinuous = true
    slider.tintColor = UIColor.red
    sliderAlert.view.addSubview(slider)

    //OK button action
    let sliderAction = UIAlertAction(title: "OK", style: .default, handler: { (result : UIAlertAction) -> Void in
        UserDefaults.standard.set(slider.value, forKey: "sliderValue")
        })

    //Cancel button action
    let cancelAction = UIAlertAction(title: "Cancel", style: .destructive, handler: nil)

    //Add buttons to sliderAlert
    sliderAlert.addAction(sliderAction)
    sliderAlert.addAction(cancelAction)

    //present the sliderAlert message
    self.present(sliderAlert, animated: true, completion: nil)
}

子视图可以放置在任何地方。为了给滑块留出空间,我在消息中添加了一些额外的换行符以打开一些空间。滑块将随警报消息一起显示和消失。

答案 2 :(得分:0)

切换隐藏属性。

slider.hidden = true//hide it

slider.hidden = false//show it