使用另一个视图的分段控制来控制单个表视图的两个原型单元?

时间:2016-08-26 12:30:01

标签: ios uitableview swift2 uisegmentedcontrol

我有两个视图控制器,即" userTableViewController"和" InsertRecordViewController"。在InsertRecordViewController中,我有一个分段控件,用于控制两个原型单元" cell1"和" cell2" userTableViewController。

任何想法的人?

提前致谢!!

2 个答案:

答案 0 :(得分:0)

首先添加两个customTableViewCell。

然后在viewController类中导入。\

然后添加以下代码。这将对您有所帮助。enter image description here

答案 1 :(得分:0)

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

{

    static NSString *CellIdentifier = @"Cell";

    CustomTableViewCell *cell;

    AnotherTableViewCell *cell1;

    if(self.segmentedControl.selectedSegmentIndex == 0){

        cell =[[CustomTableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];

      }else{


         cell1 =[[AnotherTableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];

}

     if(self.segmentedControl.selectedSegmentIndex == 0){

        return cell;

    }else{

        return cell1;

  }

}