gpt4 book ai didi

ios - 通过单元格中的辅助功能标识符访问 UIButton

转载 作者:行者123 更新时间:2023-11-29 00:33:06 26 4
gpt4 key购买 nike

如何访问 Cell 中的 Button 及其可访问性

Setting button's accessibility identifier in some method

现在我需要从上面第 1 步中设置的可访问性标识符访问单元格内的按钮

我可以通过标签设置标签和访问项目,但找不到标识符方法

最佳答案

我更喜欢使用委托(delegate)

class protocol ButtonCellDelegate: class {
func didPressButtonInCellAt(_ indexPath: IndexPath)

}

您应该在单元类代码中添加类似的内容

class YourCell: UITableViewCell {
weak var delegate: ButtonCellDelegate?
var indexPath: IndexPath?
...
@IBAction func buttonPressed() {
if let indexPath = indexPath, let delegate = delegate {
delegate.didPressButtonInCellAt(indexPath)
}
}
}

实现本身是:

class YourTableViewController: UITableViewController, ButtonCellDelegate {

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
...
cell.delegate = self
cell.indexPath = indexPath
...

}

func didPressButtonInCellAt(_ indexPath: IndexPath) {
//Things you want to do, if a button is pressed
}

}

但是如果您仍然想使用标签,可以使用 sender 传递它们

class YourTableViewController: UITableViewController {

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
...
cell.button.tag = indexPath.row
...

}

@IBAction func buttonPressed(sender: UIButton) {
let row = sender.tag
//Things you want to do, if a button is pressed
}
}

使用委托(delegate)是处理此类问题的更稳健的方法,因为它可以轻松处理多节 TableView 并且更易于维护。

如果您的按钮是以编程方式创建的,您可以添加如下操作:

    //YourCell
override func awakeFromNib() {
super.awakeFromNib()
let button = UIButton() //replace with your initialization
button.addTarget(self, action: #selector(pressed(sender:)), for: .touchUpInside)
}

func pressed(sender: UIButton!) {
if let indexPath = indexPath, let delegate = delegate {
delegate.didPressButtonInCellAt(indexPath)
}
}

如果你还想使用标签,你只需要在viewDidLoad中使用addTarget就可以了

关于ios - 通过单元格中的辅助功能标识符访问 UIButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41266060/

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