我是 iPhone 应用程序开发的新手。我目前正在研究 XML 解析。我正在从 xml 文件中提取记录并将其存储在可变数组中。我有一个表格视图,我正在从该可变数组加载表格视图。我在通过调试找到的表视图中得到 18 行。问题是当我向下滚动到 10 行时,它移动得很好,但是当第 10 行出现时,应用程序崩溃了。我得到的错误EXC_BAD_ACCESS
。这是我加载单元格的代码。谢谢。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];
if(cell == nil)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
Location *record = [[Location alloc] init];
record = [[parse locationarr] objectAtIndex:indexPath.row];
cell.textLabel.text = record.locationname;
return cell;
}
}