如何对齐UITableView的文本?

时间:2010-06-06 15:45:50

标签: iphone uitableview

在我的应用程序中,我有一个UITableView,我想将文本的对齐方式更改为居中(不仅仅是从这两侧来看

     cell.textAlignment = UITextAlignmentCenter;

但也从上到下。

你能帮帮我吗? 提前谢谢!

2 个答案:

答案 0 :(得分:2)

你可以澄清一下这个问题吗?如果您使用UITableViewCellStyleDefault并增加类似

的单元格高度
- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  return 100;
}

然后标签将垂直居中而不需要您付出任何努力。

此外,我们不推荐cell.textAlignment = …使用cell.textLabel.textAlignment = …

答案 1 :(得分:1)

如果您使用textLabel作为文本,这将会这样做。

  

cell.textLabel.textAlignment = UITextAlignmentCenter