允许用户将单元格添加到表格视图:这里
然后在该didSelectRowAtIndexPath
方法中,当用户选择一行时,每次都加载同一个视图。MyDetailView
,但根据按下的行,使用某些数据填充详细信息视图。去观看这个youtube 教程,它展示了如何做到这一点,并将其与核心数据一起保存。
祝你好运 :)
编辑
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Storyboard" bundle:nil];
DetailView * detail = (DetailView *) [storyboard instantiateViewControllerWithIdentifier:@"myDetailView"];
[tableView deselectRowAtIndexPath:indexPath animated:YES];//This makes the cell flash blue
[self detail animated:YES completion:nil];
}
无论按下哪个单元格,上面的代码都会将用户发送到该详细视图。所以,if
真的没有必要。