在我的可扩展UITableview
部分中,数字为5 [SectionItems.count]
。
我的目标是将节中的所有单元格从1编号到所有行的计数(编号不应涉及节)。
这是我的计数行代码
NSInteger count = 0;
for (NSInteger sec=0; sec < indexPath.section; sec++) {
NSInteger rows = [tableView numberOfRowsInSection:sec];
count += rows;
}
count += indexPath.row + 1;
NSArray *sect = [sectionItem objectAtIndex:indexPath.section];
cell.titleLbl.text = [NSString stringWithFormat:@"%ld %@",(long)count,[sect objectAtIndex:indexPath.row]];
但是我得到了下图中可以看到的内容:
问题是第一部分(版本控制方案)有一行,所以这两个数字应该是2和3而不是1和2。
我在这里做什么错了?
答案 0 :(得分:1)
这里的问题必须是您检查所有当前可见的行。您应该再创建一个包含单元格编号的数组,然后将其与获取文本的编号相同。
每次更新行数据时,都应重做编号
- (NSArray *)numberCells {
NSArray *numbersArray = [[NSArray alloc] init];
NSInteger num = 1;
for (NSArray *ar in sectionItem) {
NSArray *rowArray = [[NSArray alloc] init];
for (id item in ar) {
rowArray = [rowArray arrayByAddingObject:[NSNumber numberWithInteger:num]];
num += 1;
}
numbersArray = [numbersArray arrayByAddingObject:rowArray];
}
return numbersArray;
}
在需要时更新数组属性,如下所示:myArray = [self numberCells];
然后获取像这样的单元格编号:
NSArray *rowArray = [numbersArray objectAtIndex:indexPath.section];
NSNumber *num = [rowArray objectAtIndex:indexPath.row];
祝你好运!
答案 1 :(得分:1)
我会做一些结构,如节的数组,每个节应该有一个标题和一个行数组。在JSON样式中,类似:
[
{
"section_title": "My section 1",
"section_rows": [
{"title": "Lecture 1"},
{"title": "Lecture 2"}
]
},
{
"section_title": "My section 2",
"section_rows": [
{"title": "Lecture 3"},
{"title": "Lecture 4"}
]
}
]
这样,您的方法将类似于:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return myArray.count;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
__weak NSDictionary *section = myArray[section];
return [section[@"section_rows"] count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
__weak NSDictionary *lecture = myArray[indexPath.section][@"section_rows"][indexPath.row];
// Configure your cell here
}
// This method should probably be replaced with this one from UITableViewDelegate:
// - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
__weak NSDictionary *sectionInfo = myArray[section];
return sectionInfo[@"title"];
}
您应该在将数据发送/显示在UIViewController
上之前,先将其格式化为易于处理的结构,而不是试图计数/访问数据。不要仅仅因为数据而弄脏UIViewController
,它应该是相反的,并且视图应该是被动的。
我希望这是您要的,我不太确定“可扩展”表视图的含义。