我确定它很简单,但是我没有得到它,这个函数可以很好地显示滑块的值(销售价格),但是我需要在下面的按钮方法中再次访问它,但是不能传入销售价格值?
class FirstViewController: UIViewController {
var salesPrice: Int?
@IBOutlet weak var salesPriceLabel: UILabel!
@IBAction func salesPriceSlider(sender: UISlider) {
salesPrice = roundUp(Int(sender.value), divisor: 1000)
salesPriceLabel.text = "\(salesPrice!)"
}
@IBAction func testButton(sender: UIButton) {
totalClosingCosts.text = "\(salesPrice!)"
返回零
最佳答案
您只需将新的引用插座(IBOutlet)添加到滑块(将其连接到视图控制器)。
@IBOutlet weak var salesPriceSlider: UISlider!
进入就是你用同样的方法
salesPriceLabel.text = salesPriceSlider.value.description
或
salesPriceLabel.text = roundUp(Int(salesPriceSlider.value), divisor: 1000).description