gpt4 book ai didi

iphone - 如何将变量从 TableView 传递到第二个 TableView ?

转载 作者:行者123 更新时间:2023-12-03 20:53:06 26 4
gpt4 key购买 nike

我有一个包含 x 行的 TableViewController。当用户点击一行时,我想向第二个 tableViewController 传递一个变量,该变量将确定第二个 tableViewController 应加载哪些数据。我该怎么做?

我正在使用 Xcode 4.2, Storyboard这是代码:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *__strong)indexPath
{
// Navigation logic may go here. Create and push another view controller.

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

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

detail.num = [NSString stringWithFormat:[heads objectAtIndex:indexPath.row]];

在“heads”中,我得到一个数字,我必须将其传递给第二个表格 View ,具体取决于哪个第二个表格 View 显示数据。不知道最后一行是否在“num”中加载“heads”。我的做法正确吗?感谢任何帮助/引用

最佳答案

为您的 TestTable 指定要传递的变量的属性,例如

@property (retain, nonatomic) NSNumber *myNumber;

在 didSelectRowAtIndexPath 中将其分配如下:

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

// this assumes that you only have one section in your table
detail.myNumber = [NSNumber numberWithDouble:[heads objectAtIndex:indexPath.row]];

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

detail.num = [NSString stringWithFormat:[heads objectAtIndex:indexPath.row]];

在第二个表的 View Controller 中,您可以按如下方式使用该数字:

double d = [self.myNumber doubleValue];

关于iphone - 如何将变量从 TableView 传递到第二个 TableView ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8559488/

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