我已经开发了一个包含文本字段的自定义tableView。
当我点击文本文件时,我将收到创建的indexPath.section
,但是我需要所选文本文件的当前indexpath.section
。如何获取所选文本字段的表格视图部分索引?
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 18;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
[self.tableview setSectionIndexColor:UIColor.redColor];
UITableViewCell *cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
sectionTag = indexPath.section;
if (cell!=nil) {}
return cell;
}
我已经调用sectionTag来获取表格视图的部分,但是我正在接收新创建的部分索引