gpt4 book ai didi

json - 根据 JSON 标准将复选标记应用于某些 tableView 行

转载 作者:行者123 更新时间:2023-11-28 05:38:45 25 4
gpt4 key购买 nike

我正在尝试创建一个条件语句来决定 tableView 记录是否会显示复选标记配件。

如果满足条件,复选标记应自动应用于适当的记录。

以下是我的 cellForRowAt 中的内容:

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
cell.selectionStyle = UITableViewCell.SelectionStyle.none

JSON结构定义如下:

var structure = [JSONStructure]()

struct JSONStructure: Codable {
var peron: String
var update: Int
}

JSON 将更新显示为数字 100 或 200。如果 update 等于 100,则应为该记录显示一个复选标记

但是,如果记录的 update 等于 200,则不应为该记录显示复选标记。

这样的东西能实现吗?

最佳答案

到目前为止你做了什么?

这可以在您的 cellForRowAtIndexPath 中使用一个简单的条件来完成

if (update == 100) {
cell.accessoryType = .checkmark
} else {
cell.accessoryType = .none
}

关于json - 根据 JSON 标准将复选标记应用于某些 tableView 行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57683870/

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