5

嗨,我在 Storyboard的ControllerA中创建了 UITableViewCell。我需要在不同的ControllerB中使用相同的 UITableViewcell 。我只需要使用情节提要来实现这一点。知道我该怎么做吗?

4

1 回答 1

1

你可以像下面这样使用它:-

在故事板中,您必须将另一个 Table-cell 放入 ControllerB nib 并为其提供您想要类似于下面的自定义单元格的类名:-

在此处输入图像描述

在此处输入图像描述

你的 ControllerBcellForRowAtIndexPath看起来像这样

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

    Members_Cell *cell  = [tableView dequeueReusableCellWithIdentifier:@"Members_Cell"];

    cell.lblMemberName.text=[ArrSearchResult objectAtIndex:indexPath.row];

    return  cell;

}
于 2013-08-22T12:42:22.330 回答