我是Objective-C和iPhone开发的新手,在尝试将文本放在表格单元格中时遇到了一个问题。我已经搜索过google,但是解决方案是针对已修复的旧SDK错误的,因此这些问题对我不起作用。

一些代码:

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

    cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
    }

    cell.textLabel.text = @"Please center me";
    cell.textLabel.textAlignment = UITextAlignmentCenter;
    return cell;
}

上面没有使文本居中。

我也尝试过willDisplayCell方法:
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
    cell.textLabel.textAlignment = UITextAlignmentCenter;
}

我已经尝试了一些旧的发布解决方案:
UILabel* label = [[[cell contentView] subviews] objectAtIndex:0];
label.textAlignment = UITextAlignmentCenter;
return cell;

这些都不会对文本对齐产生任何影响。我用尽了所有的帮助将不胜感激。

提前加油。

最佳答案

不知道是否对您的特定问题有所帮助,但是如果您使用UITextAlignmentCenterinitWithStyle:UITableViewCellStyleDefault确实可以工作

10-07 19:55