gpt4 book ai didi

iPhone:来自数组的表格行/部分 - 从数组中设置部分和行数据的数量

转载 作者:行者123 更新时间:2023-12-01 19:24:49 26 4
gpt4 key购买 nike

我有以下代码。该数组是从 XML 构建的,因此每个节点都有一个标题(将是部分标题)和文本(将进入单元格本身)

所以每个节点有 1 个单元格和 1 个标题

- (NSInteger)
numberOfSectionsInTableView:(UITableView *)tableView {
return [arrySummaryTitle count];
}


- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 1;
}


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
}

AssessObject *newObj1 = [[AssessObject alloc] init];
newObj1=[totalArray objectAtIndex:indexPath.row];

cell.textLabel.text = newObj1.routeImage;

cell.textLabel.lineBreakMode = UILineBreakModeWordWrap;
cell.textLabel.numberOfLines = 0;
cell.textLabel.font = [UIFont fontWithName:@"Helvetica" size:17.0];


return cell;
}

-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
return [arrySummaryTitle objectAtIndex:section];
}

我真正努力做的是循环遍历单元格和部分标题以循环遍历 newObj1.routeImage 并从一个数组中获取单元格文本和单元格部分?我什至难以解释哈哈

该数组的构建如下:

章节标题、章节标题、章节标题等

文本相同,它们都在 newObj1.whatever

所以我需要它,所以表格的构建如下:
[Section Header]
[Section Text]

[Section Header]
[Section Text]

ETC

有道理?!汤姆

最佳答案

newObj1 = [totalArray objectAtIndex:indexPath.section];

这将得到节而不是行,因为每个节中只有一个项目, indexPath.row将始终返回相同的值。引用 NSIndexPath UIKit Additions .

关于iPhone:来自数组的表格行/部分 - 从数组中设置部分和行数据的数量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8271206/

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