gpt4 book ai didi

ios - 单选按钮选择时原型(prototype)单元重用

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

虽然在自动选择其他单元格单选按钮时选择单元格 1 上的单选按钮,但我需要在一个单元格中设置一个单选按钮我有很多单元格有 5 个或更多单选按钮 enter image description here

最佳答案

在这里您需要维护单选按钮中所选项目的列表/项目。在 tableview 的 didSelectRowAt 中,您可以执行以下步骤如果您正在检查字符串,则可以从选项 id base 进行检查。

selectedItem.removeAllObjects() // AS radio button is kept only one selected at a time.
selectedItem.add(currentCell.answerLabel?.text)
self.tableView?.reloadData()

在 cellForRowAt 中,您可以执行以下步骤

if (isItemSelected(optionText: answerOption) == true) {
answerCell.answerOption?.image = UIImage(named: "radio_on")
}
else {
answerCell.answerOption?.image = UIImage(named: "radio_off")
}

关于ios - 单选按钮选择时原型(prototype)单元重用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42712297/

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