以编程方式查看uitableview详细信息视图

时间:2016-01-24 11:26:29

标签: ios ios8

对于目标c的新手,我需要以编程方式在uitableview单元格中显示Json响应。并且特定行的onclick在表格视图单元格的下一页中显示其详细信息。请提供有关此内容的一些信息。

1 个答案:

答案 0 :(得分:0)

如果您使用故事板,则可以通过这种方式实现。

DetailViewController.h 文件中实现波纹线。

@property(强,非原子)id responseData ;

然后实施波纹管方法

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

 [tableView deselectRowAtIndexPath:indexPath animated:YES];

UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
DetailViewController *eventDetailsViewController = [storyboard instantiateViewControllerWithIdentifier:@"DetailViewController"];
eventDetailsViewController.responseData = YourResponseData;//pass response data to detail view
[self.navigationController pushViewController:eventDetailsViewController animated:YES];

}