我有一个 UISlider 和一个 UILabel。我想将该 UISlider 的值反映到我的 UILabel 中。我有一个 UITableViewCell,我有两个插座,我有一个 ViewController,我在其中连接了 Slider,并创建了一个动作函数(ValueChanged)。我在那个函数中做了逻辑,但没有工作,因为说我的出口是 NIL。谁能帮我正确传递这些数据?也许可以与代表一起完成,但我不知道如何更准确。
这是我的 UITableViewCell 代码:
import UIKit
class SliderCell: UITableViewCell {
// Interface Links
@IBOutlet weak var slider: UISlider!
@IBOutlet weak var progressLabel: UILabel!
override func awakeFromNib() {
super.awakeFromNib()
}
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
}
}
这是控制器:
import UIKit
// Table View with Dynamic Cells
class MainViewController: UITableViewController {
var sliderCell: SliderCell!
override func viewDidLoad() {
super.viewDidLoad()
sliderCell = SliderCell()
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
switch indexPath.row {
// Row 0 - My Slider
case 0:
let cell = tableView.dequeueReusableCell(withIdentifier: "sliderCell", for: indexPath) as! SliderCell
return cell
default:
return UITableViewCell()
}
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 1
}
override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
// Set the height for slider cell to 200 pixels
switch indexPath.row {
case 0:
return 200
default:
return 200
}
}
// Reflect the value of Slider to ProgressLabel
@IBAction func sliderValueChanged(_ sender: UISlider) {
var currentValue = Int(sender.value)
let stepSize:Int = 10
currentValue = (currentValue - currentValue % stepSize)
DispatchQueue.main.async {
self.sliderCell.progressLabel.text = "\(currentValue)%"
}
}
}
如果您正在阅读本文,请提前致谢!