如何在tableView单元格中显示文本标签

发布于 2024-12-12 06:06:42 字数 638 浏览 0 评论 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;
}

I have populated a tableview with an array of arrays, but I do not know how to display text as the cell label.

I want to use the string in the "0" position of the array that is inside the array as the text label.

Thanks.

Here's my code:

- (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;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

窗影残 2024-12-19 06:06:42

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

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

这是从 exercisesArray 中索引 indexPath.row(表的行)处获取的数组。

[excersizeArray objectAtIndex:indexPath.row]

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

You need to access the array within the array since you have an array of arrays:

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

This get's the array at index indexPath.row (the table's row) from exercisesArray.

[excersizeArray objectAtIndex:indexPath.row]

This get's the string (as you implied) from that array (the inner array).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文