gpt4 book ai didi

iphone - 如何从模型 segue TableView Controller 中获取数据?

转载 作者:行者123 更新时间:2023-12-01 19:16:55 25 4
gpt4 key购买 nike

我有 ViewController执行模型类型 segue 和另一个 UITableViewController来自底部,它在 UITableView 中有类别. I want that when any of the category selected it must pass back some data to the sender controller

最佳答案

将第一个 View Controller 设置为模态 UITableViewController 的自定义委托(delegate),可以引用UITableViewControllerUITableView在此方法的第一个 View Controller 中,如下所示:

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
if([[segue identifier] isEqualToString:@"tableviewController"]){
MyTableViewController *myTableViewController = (MyTableViewController *)[segue destinationViewController];

myTableViewController.delegate = self;
}
}

您将需要在表格 View Controller 上设置委托(delegate)回调等和属性。如果您还不知道,应该有很多关于如何做到这一点的指南,这里有一个

How do I set up a simple delegate to communicate between two view controllers?

关于iphone - 如何从模型 segue TableView Controller 中获取数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12744003/

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