这是我的问题。我有数据通过 mySQL 传递到“第二个视图控制器”,目前效果很好。但是,当我选择任何 from ( UITableView
) 单元格时,我目前无法打开新视图来显示数据。
我相信代码问题与
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
detailedViewController *productinfo = [self.storyboard instantiateViewControllerWithIdentifier:@"productDetails"];
//Retrieve current user array
foodProducts *currentProduct = [bakeryProductArray objectAtIndex:indexPath.row];
productinfo.productName = currentProduct.productName;
productinfo.productImage = currentProduct.productImgUrl;
productinfo.productDescription = currentProduct.productDescription;
[self.navigationController pushViewController:productinfo animated:YES];
}
还有其他人使用笔尖而不是情节提要来解决这个问题。
有人可以指出我哪里出错了或者我从根本上错过了什么吗?
(我有另一个项目,它只与导航控制器完全配合。虽然这是我尝试与标签栏导航一起使用的第一个项目)。