0

我已经用一组数组填充了一个表格视图,但我不知道如何将文本显示为单元格标签。

我想使用数组内部数组“0”位置的字符串作为文本标签。

谢谢。

这是我的代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
    }

    // Set up the cell...
    cell.textLabel.text = [excersizeArray objectAtIndex:indexPath.row];    
    return cell;
}
4

1 回答 1

0

您需要访问数组中的数组,因为您有一个数组数组:

cell.textLabel.text = [[excersizeArray objectAtIndex:indexPath.row]objectAtIndex:0];

这是indexPath.rowexercisesArray.

[excersizeArray objectAtIndex:indexPath.row]

这是该数组(内部数组)中的字符串(如您所暗示的)。

于 2011-10-26T21:35:15.883 回答