作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个包含 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/
我是一名优秀的程序员,十分优秀!