用数据从 TableView 初始化 DetailView 的最佳方法是什么?
我需要“发送”一个对象来填充所有标签和 ImageView。
我更改视图的代码:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[self.navigationController pushViewController:[self.storyboard instantiateViewControllerWithIdentifier:@"detailView"] animated:true];
}
迈克