我正在制作一个应用程序,一旦它启动你从不同的汽车品牌的表视图中选择。我无法弄清楚如何使用基于您选择的品牌的模型对不同的表格视图执行segue。例如,一旦你选择本田,我希望它显示每个本田车型的另一个表视图,但是现在即使你选择日产,它仍然显示本田车型而不是日产车型。如何为阵列中的每个单元格提供不同的segues和不同的表视图?
非常感谢你花时间回答这个问题。
答案 0 :(得分:0)
我认为它会创建或指出您正在移动的不同控制器segue。 你应该尝试以下方法:
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
}
如果您想检查,请查看:
if ([segue.identifier isEqualToString:@"identifer"]) {
}