我目前正在使用字典来存储我在每个TableView单元格中的分段控件的索引值。每个分段控件都有一个标记,该标记对应于它所在行的索引路径。
在字典中,键是分段控件的标签(或分段控件所在的行的索引路径,但是你喜欢),并且值是分段控件本身的索引(即选项0对应索引0和选项1对应索引1)。
因此,如果有三行并且第一个分段控件选择了选项0,第二个分段控件选择了选项1,第三个分段控件选择了选项1,则字典看起来像这样:
[0:0, 1:1, 2:1]
但是,这不是我得到的。当我打印字典时,它中唯一的值是我刚刚按下的按钮的键和索引。像这样:
[0:0]
[1:1]
[2:1]
如果我为分段控件1选择了选项0,则为分段控件2选择了选项1,为该分区控件3选择了选项1。
以下是我的参考代码:
import UIKit
class MyTableViewController: UITableViewController {
override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 150
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int{
return 3
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell{
let cell = tableView.dequeueReusableCell(withIdentifier: "cellId", for: indexPath)
let nameLabel: UILabel = {
let label = UILabel()
label.text = "Sample Item"
label.translatesAutoresizingMaskIntoConstraints = false
return label
}()
let actionButton = YSSegmentedControl(
frame: CGRect.zero,
titles: [
"Yes",
"No"
])
actionButton.delegate = self
cell.addSubview(nameLabel)
cell.addSubview(actionButton)
actionButton.translatesAutoresizingMaskIntoConstraints = false
cell.addConstraints(NSLayoutConstraint.constraints(withVisualFormat: "H:|-16-[v0]-160-[v1]-16-|", options: NSLayoutFormatOptions(), metrics: nil, views: ["v0": nameLabel, "v1": actionButton]));
cell.addConstraints(NSLayoutConstraint.constraints(withVisualFormat: "V:|[v0]|", options: NSLayoutFormatOptions(), metrics: nil, views: ["v0": nameLabel]))
cell.addConstraints(NSLayoutConstraint.constraints(withVisualFormat: "V:|-60-[v0]-60-|", options: NSLayoutFormatOptions(), metrics: nil, views: ["v0": actionButton]))
actionButton.tag = indexPath.row
cell.backgroundColor = .green
return cell
}
override func viewDidLoad() {
super.viewDidLoad()
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "cellId")
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
extension MyTableViewController: YSSegmentedControlDelegate {
func segmentedControl(_ segmentedControl: YSSegmentedControl, willPressItemAt index: Int) {
var indexToTag = [Int:Int]()
indexToTag[index] = segmentedControl.tag
// Looking up tag
let tag = indexToTag[index]
print("\(indexToTag)")
}
func segmentedControl(_ segmentedControl: YSSegmentedControl, didPressItemAt index: Int) {
}
}
以及我的应用程序的图片:
https://i.stack.imgur.com/ezMUJ.png
谢谢, 尼克
答案 0 :(得分:0)
修订:在我看来,你在每个
之前得到一本新词典indexToTag[index] = segmentedControl.tag
代码示例使用一个变量indexToTag,其范围是函数的本地范围,并且不存在。
如果可以从函数内部移动字典(indexToTag), 但仍然在扩展中,那么实例的存储属性可以记住。
问题是swift扩展不直接允许扩展中的存储属性。 (检查Stack Overflow中存储属性和swift扩展的条目)。
挑战在于让代码拥有所需的类或实例变量来记住字典内容。
这是一个使用普通扩展的沙箱示例。字典在扩展名之外。
我不知道你的代码如何才能最好地完成类似的事情。
import Foundation
var indexToTag = [Int:Int]()
extension String {
func control( index: Int, scTag: Int) {
indexToTag[index] = scTag
let tag = indexToTag[index]!
print(" tag is \(tag) indexToTag contains: \(indexToTag)")
}
}
let bst = String()
bst.control(index: 0, scTag: 0)
bst.control(index: 1, scTag: 1)
bst.control(index: 2, scTag: 1)
打印
tag is 0 indexToTag contains: [0: 0]
tag is 1 indexToTag contains: [0: 0, 1: 1]
tag is 1 indexToTag contains: [2: 1, 0: 0, 1: 1]
请注意,indexToTag是一个字典,因此内容没有原始插入顺序。