我想将所选的uitablevicell中的文本显示到nextview的导航栏标题。对此有何想法?
答案 0 :(得分:2)
在你的委托方法中:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]
nextViewController.title = cell.text;
[self.navigationController pushViewController:nextViewController animated:YES];
}