使用动态单元格转换到表格中的视图

时间:2012-11-01 21:28:55

标签: objective-c ipad uitableview storyboard

我创建了tableview并填充了表动态数据。

如何在单元格和另一个视图之间创建转换。

Сells中填充了文件夹文档中的文件名称。

我使用故事板。

适用于iPad的应用程序。

1 个答案:

答案 0 :(得分:0)

您可以使用以下代码

从单元格转换到另一个视图
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
 anotherView *obj    =[[anotherView alloc]initWithNibName:@"anotherView" bundle:nil];
[self.navigationController pushViewController:obj animated:YES];
[obj release];

}

此方法是tableview的委托方法,当您选择任何单元格时,它将被调用并将转到另一个视图