3

在这行代码中收到错误消息:

Team *team = [leagueLocal.teams objectAtIndex:indexpath.row];

错误是“使用未声明的标识符'indexpath'”......但我不确定我会在objectAtIndex:上放什么,而不是indexpath.row,因为这在这个应用程序的 TableView 部分中对我有用。

大图,我正在尝试使用 NSUserDefaults 保存选择的团队名称。团队名称是通过 JSON 从 Web 服务中提取的。

这是到目前为止我拥有的 NSUserDefaults 部分的完整代码:

   // Create User Defaults Variable
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];

   // Tell it where to look
Sport *sportLocal = [sports objectAtIndex:0];
League *leagueLocal = [sportLocal.leagues objectAtIndex:0];
Team *team = [leagueLocal.teams objectAtIndex:indexpath.row];  //  This is where error is

   // Store the data, this is the stuff I want to save
[defaults setObject:team.abbreviation forKey:[NSString stringWithFormat:@"teamAbbreviation%d", _buttonNumber]];

   // After saving, synchronize data
[defaults synchronize];

谢谢您的帮助!让我知道是否需要更多信息,或者如果需要我可以在哪里帮助澄清。

编辑- 我viewDidLoad在错误下方添加了一个 NSLog 以查看我得到了什么,它返回 null:NSLog(@"object at index: %@", team.abbreviation);

4

1 回答 1

7

如果这是在 viewDidLoad 中,那么除非您已经初始化 indexPath 变量,否则它将无效。它仅在您的 tableView 方法中有效,因为它是通过函数传入的。

您有几个选项来获取您正在寻找的 indexPath:

Team *team = [leagueLocal.teams objectAtIndex:[NSIndexPath indexPathForRow:i inSection:k];
//where i and k are integers that indicate the row/section for the tableViewCell your looking for...(k would just be equal to 0 if you only have one section)

或者另一种方式是,如果用户之前已经选择了您要查找的内容,那么您可以使用:

NSIndexPath *indexPath=[self.tableView indexPathForSelectedRow];
Team *team = [leagueLocal.teams objectAtIndex:indexPath.row];//now you can use it the way you have it written in your question

希望能帮助到你!

于 2013-03-01T00:47:10.503 回答