我在我的应用程序中使用TableViewCell。和细胞数据,如标签文本和来自特定细胞的imageview的图像。应该在下一个视图控制器中查看。
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
MainBodyViewController * mainViewController =[[MainBodyViewController alloc]init];
MasterDetails * masted =(MasterDetails*)[listArray objectAtIndex:indexPath.row];
NSLog(@"did select row at index is givne as:%@",masted);
mainViewController.headLbl.text=[NSString stringWithFormat:@"%@",masted.title];
}
但问题是我没有从listArray获取数据。数据来自json。
答案 0 :(得分:0)
您需要检查