我正在使用带有标题,电话和电子邮件的分段控件。我正在从通讯录中获取联系人详细信息,并将其存储为字典数组。每个词典都带有键“名称”,“电子邮件”,“图像”,“电话”。我的要求是,当点击细分控件上的电话按钮时,在表格视图中仅显示带有电子邮件的联系人,而在点击电话按钮时显示在电话中的联系人。请帮助我实现这一目标。

最佳答案

我们可以采用多种方式实现。例如,在这里我使用Tag概念

步骤1

ViewDidLoad中,将其设置为tableview.tag=1;

第2步

- (IBAction)segBtnTapped:(id)sender {

  if(yourSegmentControl.selectedSegmentIndex==0){
    // email
    tableview.tag=1;
 }
 else if(segControlForColor.selectedSegmentIndex==1){
   // phone
    tableview.tag=2;
 }
else{
    // titles
    tableview.tag=3;
 }
 [yourtableView reloadData];
}


第三步

无需更改部分中的行数或仅在您的CellForRowatIndexpathdidSelectrowatIndexpath中调用任何内容,例如

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


UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

   if(tableview.tag == 1)
  {
      //code for email
      cell.textLabel.text =[[yourarrayName objectAtIndex:indexPath.row]objectForKey:@"email"];

  }

  else if(tableview.tag == 2)
  {
      //code for phone

cell.textLabel.text =[[yourarrayName objectAtIndex:indexPath.row]objectForKey:@"phone"];

  }

  else if(tableview.tag == 3)
  {
      //code for titles
         cell.textLabel.text =[[yourarrayName objectAtIndex:indexPath.row]objectForKey:@"titles"];
  }
  return cell;
}

 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
 if(tableview.tag == 1)
  {
      //code for email
        NSLog(@"email==%@",[[yourarrayName objectAtIndex:indexPath.row]objectForKey:@"email"]);

  }

  else if(tableview.tag == 2)
  {
      //code for phone

    NSLog(@"phone==%@",[[yourarrayName objectAtIndex:indexPath.row]objectForKey:@"phone"]);

  }

  else if(tableview.tag == 3)
  {

         NSLog(@"title==%@",[[yourarrayName objectAtIndex:indexPath.row]objectForKey:@"titles"]);
  }

}

10-08 12:10