我有两个视图控制器,即" userTableViewController"和" InsertRecordViewController"。在InsertRecordViewController中,我有一个分段控件,用于控制两个原型单元" cell1"和" cell2" userTableViewController。
任何想法的人?
提前致谢!!
答案 0 :(得分:0)
答案 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;
}
}