单击uitableview中的单元格时,如何在nextview上获取单元格的文本

时间:2009-06-12 07:02:13

标签: iphone objective-c xcode uitableview uinavigationbar

我想将所选的uitablevicell中的文本显示到nextview的导航栏标题。对此有何想法?

1 个答案:

答案 0 :(得分:2)

在你的委托方法中:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]
nextViewController.title = cell.text;
[self.navigationController pushViewController:nextViewController animated:YES];

}