gpt4 book ai didi

iphone - 在不使用 Segue 的情况下将数据从一个 View Controller 传递到另一个 View Controller

转载 作者:行者123 更新时间:2023-12-03 17:23:37 25 4
gpt4 key购买 nike

我有一个 UITableView (假设类“Parent”位于 View “screen 1”中)。当我单击父级的一个单元格时,我将显示另一个 UITableView (我们将其称为“Screen2” View 中的“child”类)​​。父级和子级通过“segue”连接,我可以使用“segue”传递数据。

例如,父级有单元格 - “Cell1”,触摸“Cell1”时,我得到“Cell11”、“Cell12”、“Cell13”[这是“screen2”,表格查看对象”]。

现在,有一些与“Cell11”相关的描述(一旦我触摸“Cell11”),我希望它在另一个 View Controller (“screen3”)中显示 Cell11 的描述。在这里,要在“screen2”到“screen3”之间传递信息,我宁愿不使用“Segue”

我该怎么做?

最佳答案

您可以通过两种方式呈现新屏幕。

1) 使用界面生成器,在这里您可以使用 Segue 将某些内容传递到新屏幕上。

2)手动实例化,实例化后直接呈现即可。

考虑到您不想使用方法一,您可以使用方法二,如下所示:

ScreenBClass *screenB = [self.storyboard instantiateViewControllerWithIdentifier:@"screenB"];

screenB.objectPointerInOtherClass = self.objectIWantToPass;

[self screenB animated:YES];

关于iphone - 在不使用 Segue 的情况下将数据从一个 View Controller 传递到另一个 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13800849/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com