gpt4 book ai didi

ios - 导航 Controller 不将数据从 tableview 传递到 viewcontroller

转载 作者:行者123 更新时间:2023-11-28 20:22:01 24 4
gpt4 key购买 nike

表格 View 的代码:

-(void)tableView:(UITableView *)tableView didselectRowAtIndexPath:(NSIndexPath *)indexPath{

ViewControllerDisplayMsg *detail = [self.storyboard instantiateViewControllerWithIdentifier:@"viewController3"];


cellvalue=[array objectAtIndex:indexPath.row];
detail.DisplayMsgString = cellvalue;
[self.navigationController pushViewController:detail animated:YES];

}

viewController3 中的代码:

- (void)viewDidLoad
{
[super viewDidLoad];

self.DisplayMsgLabel.text= self.DisplayMsgString;

}

打开 viewcontroller3 时,上面的代码没有将数据传递给空白。为什么数据没有传递。缺少什么代码?

请帮助我。非常感谢您的帮助。

提前致谢。

最佳答案

你用过

   -(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath{

}

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{

}

我希望你打错了,如果不是这个,请分享你的结果

关于ios - 导航 Controller 不将数据从 tableview 传递到 viewcontroller,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15541895/

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