我正在尝试做一个 ios 应用程序,但我被困在类之间传递数据。这是我的第二个应用程序。第一个是用一个全局类完成的,但现在我需要多个类。我尝试了许多教程,但没有奏效或传递的值始终为零。有人可以给我写一个简单的应用程序来演示 IOS 5 中的变量传递。没什么特别的,故事板带有 2 个视图控制器,一个变量。
感谢您的帮助 。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
// Navigation logic may go here. Create and push another view controller.
FirstViewController *fv;
fv.value = indexPath.row;
NSLog(@"The current %d", fv.value);
FirstViewController *detail =[self.storyboard instantiateViewControllerWithIdentifier:@"Detail"];
[self.navigationController pushViewController:detail animated:YES];
}
这是我的主视图中的代码,我需要将 indexPath.row 或我按下的单元格的索引发送到下一个视图