gpt4 book ai didi

ios - Ipad-数据未显示在 UItableview 上

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

我正在开发一个 ipad 应用程序。在这个应用程序中,我有两个部分 - 一个部分显示类似 GridView 的图库,另一个部分显示表格 View 。我的 GridView 工作成功。

当我实现表格 View 时,它全屏显示并指定行高和背景颜色。但是数据未显示在表格 View 上.我正在从plist收集数据。

我设计了tableviewcell来以样式显示每一行。但是tableviewcell设计在tableview中不起作用。

我使用了Apple的Advancedtableviews示例程序

中的一些代码。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"categoryCell";

categoryCell *cell = (categoryCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];


// Configure the data for the cell.
NSDictionary *dataItem = [data objectAtIndex:indexPath.row];
cell.icon = [UIImage imageNamed:[dataItem objectForKey:@"Icon"]];

cell.name = [dataItem objectForKey:@"Name"];

cell.num = [dataItem objectForKey:@"Num"];

return cell;
}

我该如何克服这个问题?

最佳答案

向 cellForRowAtIndexPath 方法添加断点。如果该方法从未被调用,则您的其他数据源方法存在问题 - 您将返回表中的节数或节中的行数 0。

关于ios - Ipad-数据未显示在 UItableview 上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8652570/

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