在我的应用程序中,我有一个UITableView,我想将文本的对齐方式更改为居中(不仅仅是从这两侧来看
cell.textAlignment = UITextAlignmentCenter;
但也从上到下。
你能帮帮我吗? 提前谢谢!答案 0 :(得分:2)
UITableViewCellStyleDefault
并增加类似的单元格高度
- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
return 100;
}
然后标签将垂直居中而不需要您付出任何努力。
此外,我们不推荐cell.textAlignment = …
使用cell.textLabel.textAlignment = …
。
答案 1 :(得分:1)
如果您使用textLabel作为文本,这将会这样做。
cell.textLabel.textAlignment = UITextAlignmentCenter