在文本字段上点击时获取tableview节索引

时间:2018-06-25 10:55:03

标签: ios

我已经开发了一个包含文本字段的自定义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来获取表格视图的部分,但是我正在接收新创建的部分索引

0 个答案:

没有答案