gpt4 book ai didi

ios - 关于 TableView 单元格 indexpath.row

转载 作者:行者123 更新时间:2023-11-29 10:25:13 25 4
gpt4 key购买 nike

当我给单元格赋值时出现错误

profileJson = dicData[@"profile"][0];

cell.userName.text = [[profileJson objectForKey:@"First_Name"] objectAtIndex:indexPath.row];

Error: [__NSCFString objectAtIndex:]: unrecognized selector sent to instance 0x7fe5915d7180

如果我写这条语句

cell.userName.text = [profileJson objectForKey:@"First_Name"];

正在分配最后一个值。如果 count 为 3,则输出如下所示:

泰雅

泰雅

泰雅

对于每个单元格。

最佳答案

您似乎不匹配您的代码来查询从 JSON 中解压缩的数据结构,您没有包含它,但看起来您需要:

profileJson = dicData[@"profile"][indexPath.row];

cell.userName.text = [profileJson objectForKey:@"First_Name"];

因此您要根据表索引对配置文件数组进行索引,而不是总是取第一个,然后提取名字变量(您之前对数组和字符串感到困惑)。

关于ios - 关于 TableView 单元格 indexpath.row,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32762382/

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