gpt4 book ai didi

ios - 'top-down' UITableView 中 UITableViewCell 中的多个按钮

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:09:20 25 4
gpt4 key购买 nike

我正在尝试找出当表格 View “自上而下”时如何操作 UITableViewCell 中的按钮 - 例如,每个新行都添加到表格 View 的顶部。我使用以下代码实现了这一点:

我使用以下代码将新项目插入到我的模型数组中,然后插入到 TableView 中:

let newItem = Item(text: inputTextView.text, time: Date())
items.insert(newItem, at: 0) //inserting into the front of model array

tableView.beginUpdates()
let indexPath:IndexPath = IndexPath(row:0, section:0)
tableView.insertRows(at: [indexPath], with: .fade)
tableView.endUpdates()

在 cellForRowAt 函数中,我运行以下代码:

let cell = tableView.dequeueReusableCell(withIdentifier: postCellID, for: indexPath) as! NewPostCell
let item = items[indexPath.row]

cell.postTextLabel.text = text
cell.timeLabel.text = dateFormatter.string(from: time)

cell.selectionStyle = .none

return cell

我的每个 tableview 单元格中都有三个按钮。

如何连接这些按钮,以便知道从哪个 indexPath 按下了哪个按钮?

问题是,如果我使用 indexPath.row 来标记按钮,那么所有单元格中的按钮都会被标记为 0,因为每次插入都发生在表顶部的 indexPath.row 第 0 个位置。

我想用我的模型数组的当前大小来标记按钮,但这也不起作用,因为当单元格被重新使用时,它们可以在那时用数组的长度来标记,这将是错了。

有很多应用程序在表格 View 类型的设置中有“最后一个条目在顶部”,按钮在单元格中。所以必须有办法做到这一点。

最佳答案

您可以将 UIButton 添加到您的 UITableViewCell 并通过标记访问这些 UIButton 并将目标方法添加到这些按钮:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

// create a new cell if needed or reuse an old one
let cell:UITableViewCell = self.tableVw.dequeueReusableCell(withIdentifier: "Cell") as UITableViewCell!

//Access UIButton
let button1:UIButton = cell.viewWithTag(10) as! UIButton
let button2:UIButton = cell.viewWithTag(11) as! UIButton
let button3:UIButton = cell.viewWithTag(12) as! UIButton

//Add Action Methods to UIButtons
button1.addTarget(self, action: #selector(FisrtButtonClick), for: .touchUpInside)
button2.addTarget(self, action: #selector(SecondButtonClick), for: .touchUpInside)
button3.addTarget(self, action: #selector(ThirdButtonClick), for: .touchUpInside)

return cell
}

按钮操作

// MARK: - UIButton Methods.
func FisrtButtonClick(_ sender: Any) {
//Get Button cell position.
let ButtonPosition = (sender as AnyObject).convert(CGPoint.zero, to: tableVw)
let indexPath = tableVw.indexPathForRow(at: ButtonPosition)
if indexPath != nil {
print("Cell indexPath: \(indexPath?.row)")
}
}

func SecondButtonClick(_ sender: Any) {

//Get Button cell position.
let ButtonPosition = (sender as AnyObject).convert(CGPoint.zero, to: tableVw)
let indexPath = tableVw.indexPathForRow(at: ButtonPosition)
if indexPath != nil {
print("Cell indexPath: \(indexPath?.row)")
}

}

func ThirdButtonClick(_ sender: Any) {

//Get Button cell position.
let ButtonPosition = (sender as AnyObject).convert(CGPoint.zero, to: tableVw)
let indexPath = tableVw.indexPathForRow(at: ButtonPosition)
if indexPath != nil {
print("Cell indexPath: \(indexPath?.row)")
}

}

关于ios - 'top-down' UITableView 中 UITableViewCell 中的多个按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45015157/

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