gpt4 book ai didi

ios - 通过 XIB 文件在 tableView 到DetailedTableView 之间导航

转载 作者:行者123 更新时间:2023-11-29 05:43:14 25 4
gpt4 key购买 nike

我有一个 TableView 。在单击特定行时,我想通过 didSelectRowAtIndexPath 将一些数据发送到另一个 XIB 文件。

目前我可以通过此在 XIB 之间导航

 abc *vc = [[abc alloc] init];

[self.navigationController pushViewController:vc animated:YES];

但还没有实现数据传递。有人可以帮忙吗?

最佳答案

在abc类中添加字符串类型的属性,如下所示:

@property (nonatomic, strong) NSString *passedString;

在初始化 viewcontrller 对象后的代码中,将详细信息传递给属性,如下所示:

 abc *vc = [[abc alloc] init];
vc. passedString = @"Pass The String Value Here." //If you pass empty string it would show the empty sting in abc ViewController
[self.navigationController pushViewController:vc animated:YES];

希望这有帮助。

关于ios - 通过 XIB 文件在 tableView 到DetailedTableView 之间导航,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56373522/

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